0

我的反应应用程序中有这段代码,它没有发布 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 */
        });
4

1 回答 1

-1

在尝试了所有可能的方法后(根据建议编辑代码,检查浏览器是否最新并正常工作,检查服务器代码,库将使用 GET 方法工作,但 POST 仍然无法工作)我切换回我们的旧 JQuery!

于 2016-10-11T12:02:01.607 回答