WebAPI提取是否遵循重定向?

时间:2017-10-19 15:46:43

标签: javascript http web

fetch是否遵循HTTP 30x重定向?

1 个答案:

答案 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
});