我的反应应用程序中有这段代码,它没有发布 json 正文!已经尝试了每一种解决方案,即使是这里的https://github.com/matthew-andrews/isomorphic-fetch/issues/34也不起作用,我可以用 jquery 做帖子,但我需要使用 fetch,有什么想法吗?
fetch('/main/newuser',{
method:'post',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body:JSON.stringify({username:'test',password:'test'})
}).then((response)=>{
if(response.status >= 200 && response.status < 300){
return response;
}else{
var error = new Error(response.statusText);
error.response = response;
throw error;
}
}).then((response)=>{
return response.json();
}).then((data)=>{
/* Process data */
}).catch((error)=>{
/* Catch Error */
});