使用fetch时status code =200,但是response.ok却是false
背景:
使用node的express开一个服务器端口为9876,react APP使用fetch请求localhost:9876的资源,使用浏览器调试工具的network查看status是200,但是在fetch的then里面打印出来response是status:0,ok:false
fetch的代码:
fetch(`http://localhost:9876/login.html`, {
method: "POST",
mode: "no-cors",
headers: {
"Content-Type": "application/x-www-form-urlencoded"
}
})
.then(response => {
log(response)
})
.catch(function(error) {
console.log('There has been a problem:' + error.message);
});
打印出来的response:
node代码:
var express = require('express');
var app = express();
app.use(express.static('login'));
app.post('/login.html',function(req, res){
res.writeHead(200,{"Content-Type":"text/plain"});
res.end("Hello world");
});
app.listen(9876, function () {
console.log('app listening on port 9876!');
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
找到原因:
发起的是跨域请求,给fetch的参数设置为
mode:"cors"
,然后node那里加一句app.use(require('cors')());
如果fetch设置为mode:"no-cors",可以请求成功,但是response的属性不可读Response.ok
Read only
Contains a boolean stating whether the response was successful (status in the range 200-299) or not.
不矛盾,请求发送成功了,但是没响应。