我收到带有位置标头的 303 响应,如何防止 XMLHttpRequest 重定向?
下面是代码
var xhr = new XMLHttpRequest();
xhr.open('GET', '/api/v1/test' + $(e.target).data('machineimage'));
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
// here I need to get the `location` header and do something with it
// xhr.getResponseHeader('location')
// but before it reaches here, there is a redirect
}
};
xhr.send();
我也观察到它与 jquery 相同,有没有绕过这个?