当我打开一个POST请求时,它不能正常工作,我的代码有什么问题?
顺便提一句。我发送了一个POST请求,但服务器收到了一个OPTIONS请求。
try{
const URL = config.LOGIN;
const data = await fetch(URL,{
method:"POST",
headers:{
"Accept": "application/json",
"Content-Type": "application/json"
},
body:JSON.stringify({
"a":1,
"b":2
})
}).then((response)=>{
return response.json();
});
console.log(data)
}catch(e){
// TypeError: Failed to fetch
alert(e)
}
并且浏览器报错:405: Method Not Allowed
GET请求工作正常
const data = await fetch(URL).then((res)=>{
return res.json()
});
客户:
405: Method Not Allowed
TypeError: Failed to fetch
服务器:
[W 170505 14:20:00 web:1971] 405 OPTIONS /shundai/CoffeeManagementLogin (192.168.2.114) 1.00ms
谢谢!