location ヘッダーを含む 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でも同じことがわかりましたが、これをバイパスする方法はありますか?