使用REACT附加数据时,Axios发布请求和选项请求一起更改

时间:2019-06-21 17:11:56

标签: reactjs post axios frontend options

我正尝试将POST请求发送到服务器,并使用axios将JSON添加到数据中,但是由于某些原因,它会随着Options请求而自动更改:

我的代码:

var headers = {
    'Content-Type':'application/json',
    'Access-Control-Allow-Origin':'*'
}
axios.post("http://localhost:4000/sites-api/parking-services", {"a":"b"}, {headers:headers}).then(function (response){
    console.log("Ssss222")
}).catch(function(error){
    console.log(error);
});

在浏览器中,我看到它带有选项:

enter image description here

如果我删除数据对象({“ a”:“ b”}),则可以看到它发送了POST请求。

有什么建议吗?

0 个答案:

没有答案