Hello i'm trying to make a get request in react
with JQuery i used to do something like this
$.get("Run",{ pr: "takeData", name: "Bob"}, function (o) {
console.log(o)
});
i tried doing something like this
fetch("https://localhost:44347/Run?{
pr:"takeData",
name:"Bob"
}) .then( res => res.text())
.then((data) => {
console.log(data);
});
but id didn't worked,instead i had to do it like this
fetch("https://localhost:44347/Run?pr=takeData&name='Bob'") .then( res => res.text())
.then((data) => {
console.log(data);
});
and it worked, but i can't figure out how to pass the "pr" and the "name" parameters without having to type them directly in the url can someone help me?