How to send values like form-data postman - react js











up vote
0
down vote

favorite












I'm using fetch to send value to my server. my server is php.
when I send my values with postman my server response as well.



but when I want to send my values with fetch I cannot get them from server side.



postman:
enter image description here



my requestOption:



  const requestOptions = {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},

body: JSON.stringify(parms)
};


my values sent to server but I cannot get them like postman form-data.



parms is a object variable. like:



var parms = {};
parms['tok'] = '35345345';









share|improve this question




















  • 1




    you dont need to json stringify them i tihink
    – Aseem Upadhyay
    Nov 8 at 14:00















up vote
0
down vote

favorite












I'm using fetch to send value to my server. my server is php.
when I send my values with postman my server response as well.



but when I want to send my values with fetch I cannot get them from server side.



postman:
enter image description here



my requestOption:



  const requestOptions = {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},

body: JSON.stringify(parms)
};


my values sent to server but I cannot get them like postman form-data.



parms is a object variable. like:



var parms = {};
parms['tok'] = '35345345';









share|improve this question




















  • 1




    you dont need to json stringify them i tihink
    – Aseem Upadhyay
    Nov 8 at 14:00













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I'm using fetch to send value to my server. my server is php.
when I send my values with postman my server response as well.



but when I want to send my values with fetch I cannot get them from server side.



postman:
enter image description here



my requestOption:



  const requestOptions = {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},

body: JSON.stringify(parms)
};


my values sent to server but I cannot get them like postman form-data.



parms is a object variable. like:



var parms = {};
parms['tok'] = '35345345';









share|improve this question















I'm using fetch to send value to my server. my server is php.
when I send my values with postman my server response as well.



but when I want to send my values with fetch I cannot get them from server side.



postman:
enter image description here



my requestOption:



  const requestOptions = {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},

body: JSON.stringify(parms)
};


my values sent to server but I cannot get them like postman form-data.



parms is a object variable. like:



var parms = {};
parms['tok'] = '35345345';






javascript reactjs






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 8 at 14:03

























asked Nov 8 at 13:58









S.M_Emamian

5,780651101




5,780651101








  • 1




    you dont need to json stringify them i tihink
    – Aseem Upadhyay
    Nov 8 at 14:00














  • 1




    you dont need to json stringify them i tihink
    – Aseem Upadhyay
    Nov 8 at 14:00








1




1




you dont need to json stringify them i tihink
– Aseem Upadhyay
Nov 8 at 14:00




you dont need to json stringify them i tihink
– Aseem Upadhyay
Nov 8 at 14:00












1 Answer
1






active

oldest

votes

















up vote
2
down vote



accepted










Just use formData as fetch body:



var formData = new FormData()
formData.append("tok", '35345345')
const requestOptions = {
method: 'POST',
headers: {
'Accept': 'application/json'
},

body: formData
};





share|improve this answer























  • I don't know but It doesn't work.
    – S.M_Emamian
    Nov 8 at 15:44










  • remove content-type from headers
    – kiarashws
    Nov 8 at 15:45











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53209225%2fhow-to-send-values-like-form-data-postman-react-js%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
2
down vote



accepted










Just use formData as fetch body:



var formData = new FormData()
formData.append("tok", '35345345')
const requestOptions = {
method: 'POST',
headers: {
'Accept': 'application/json'
},

body: formData
};





share|improve this answer























  • I don't know but It doesn't work.
    – S.M_Emamian
    Nov 8 at 15:44










  • remove content-type from headers
    – kiarashws
    Nov 8 at 15:45















up vote
2
down vote



accepted










Just use formData as fetch body:



var formData = new FormData()
formData.append("tok", '35345345')
const requestOptions = {
method: 'POST',
headers: {
'Accept': 'application/json'
},

body: formData
};





share|improve this answer























  • I don't know but It doesn't work.
    – S.M_Emamian
    Nov 8 at 15:44










  • remove content-type from headers
    – kiarashws
    Nov 8 at 15:45













up vote
2
down vote



accepted







up vote
2
down vote



accepted






Just use formData as fetch body:



var formData = new FormData()
formData.append("tok", '35345345')
const requestOptions = {
method: 'POST',
headers: {
'Accept': 'application/json'
},

body: formData
};





share|improve this answer














Just use formData as fetch body:



var formData = new FormData()
formData.append("tok", '35345345')
const requestOptions = {
method: 'POST',
headers: {
'Accept': 'application/json'
},

body: formData
};






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 8 at 15:45

























answered Nov 8 at 14:09









kiarashws

1,142520




1,142520












  • I don't know but It doesn't work.
    – S.M_Emamian
    Nov 8 at 15:44










  • remove content-type from headers
    – kiarashws
    Nov 8 at 15:45


















  • I don't know but It doesn't work.
    – S.M_Emamian
    Nov 8 at 15:44










  • remove content-type from headers
    – kiarashws
    Nov 8 at 15:45
















I don't know but It doesn't work.
– S.M_Emamian
Nov 8 at 15:44




I don't know but It doesn't work.
– S.M_Emamian
Nov 8 at 15:44












remove content-type from headers
– kiarashws
Nov 8 at 15:45




remove content-type from headers
– kiarashws
Nov 8 at 15:45


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53209225%2fhow-to-send-values-like-form-data-postman-react-js%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

how to define a CAPL function taking a sysvar argument

Schultheiß

Extract exact text in tags