我正尝试将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);
});
在浏览器中,我看到它带有选项:
如果我删除数据对象({“ a”:“ b”}),则可以看到它发送了POST请求。
有什么建议吗?