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:
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
add a comment |
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:
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
1
you dont need to json stringify them i tihink
– Aseem Upadhyay
Nov 8 at 14:00
add a comment |
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:
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
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:
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
javascript reactjs
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
add a comment |
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
add a comment |
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
};
I don't know but It doesn't work.
– S.M_Emamian
Nov 8 at 15:44
removecontent-type
fromheaders
– kiarashws
Nov 8 at 15:45
add a comment |
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
};
I don't know but It doesn't work.
– S.M_Emamian
Nov 8 at 15:44
removecontent-type
fromheaders
– kiarashws
Nov 8 at 15:45
add a comment |
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
};
I don't know but It doesn't work.
– S.M_Emamian
Nov 8 at 15:44
removecontent-type
fromheaders
– kiarashws
Nov 8 at 15:45
add a comment |
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
};
Just use formData
as fetch
body:
var formData = new FormData()
formData.append("tok", '35345345')
const requestOptions = {
method: 'POST',
headers: {
'Accept': 'application/json'
},
body: formData
};
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
removecontent-type
fromheaders
– kiarashws
Nov 8 at 15:45
add a comment |
I don't know but It doesn't work.
– S.M_Emamian
Nov 8 at 15:44
removecontent-type
fromheaders
– 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
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
1
you dont need to json stringify them i tihink
– Aseem Upadhyay
Nov 8 at 14:00