fetch是否遵循HTTP 30x重定向?
答案 0 :(得分:7)
是。 Check this。
检查响应来自重定向的请求是否为 简单地在Response对象上检查此标志。
if (response.redirected) {
//...
}
您可以将其停用:
fetch("awesome-picture.jpg", { redirect: "error" }).then(function(response) {
//some stuff
}).then(function(imageBlob) {
//some other stuff
});