此 URL 向 wget
和 curl
返回代码 301,但 node-fetch
报告的是 200:
# wget https://www.h24info.ma/feed
--2021-03-19 11:30:23-- https://www.h24info.ma/feed
Resolving www.h24info.ma (www.h24info.ma)... 104.21.39.120, 172.67.145.67, 2606:4700:3030::6815:2778, ...
Connecting to www.h24info.ma (www.h24info.ma)|104.21.39.120|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
# curl -I https://www.h24info.ma/feed
HTTP/2 301
但是 fetch 返回 200(并且永远挂起):
fetch('https://www.h24info.ma/feed', {
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36',
'accept': 'text/html,application/xhtml+xml'
}).then(function (res) {
console.error('node-fetch status: %s', res.status);
});
node-fetch status: 200
我错过了什么吗? Fetch 应该返回 301,以便可以中止请求并处理错误。
软件 | 版本 |
---|---|
节点获取 | 2.6.1 |
节点 | v14.15.3 |
npm | 7.6.0 |
操作系统 | Linux 4.9.0-15-amd64 #1 SMP Debian 4.9.258-1 (2021-03-08) x86_64 GNU/Linux |
答案 0 :(得分:2)
默认情况下,fetch
会透明地跟踪重定向。也就是说,如果请求的 URL 返回 301/302 重定向响应代码,fetch
将自动向重定向 URL 发出另一个请求,您获得的响应将来自第二个请求。
您可以通过获取选项对象中的 redirect
字段配置此行为:
fetch(URL, {
redirect: 'manual' // do not follow redirects automatically
})
Check out the MDN docs for fetch
了解更多信息。
Fetch 应该返回 301,以便可以中止请求并处理错误。
301 状态并不是真正的错误,因此我认为 fetch
的默认行为是正确的。在大多数情况下,您想要的是 fetch
请求指定的资源,而不管它实际在哪里。为此,如果服务器告诉 fetch
在别处寻找资源,它会。