admin管理员组文章数量:1344573
I'm sending xhr
request to server to download a file. I'm including authorization token into the request so I can't download a file without using xhr
. What steps should I take to make browser download a file when response from the server is received? And what headers should the server include?
I'm sending xhr
request to server to download a file. I'm including authorization token into the request so I can't download a file without using xhr
. What steps should I take to make browser download a file when response from the server is received? And what headers should the server include?
-
2
You can stuff the server response into a data URL, put it on an
<a download>
and trigger a click. Note that thedownload
attribute is not well supported. Or, you can use a normal form submit (not XHR), sending your token in a hidden input instead of in a request header. – Amadan Commented Sep 17, 2015 at 6:26 - @Amadan, thanks. These are the only options, right? – Max Koretskyi Commented Sep 17, 2015 at 10:39
- I won't say that - but the only ones I can think of. – Amadan Commented Sep 17, 2015 at 10:41
- It seems that this one might do? – Max Koretskyi Commented Sep 17, 2015 at 10:49
-
1
Yes, that's the code for "stuff the server response into a data URL, put it on an
<a download>
and trigger a click". – Amadan Commented Sep 18, 2015 at 9:33
1 Answer
Reset to default 8This is a piece of code that works for me. Im using it for testing so its not the cleanest way I guess. But it can show a picture.
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var downloadUrl = URL.createObjectURL(xhttp.response);
var a = document.createElement("a");
document.body.appendChild(a);
a.style = "display: none";
a.href = downloadUrl;
a.download = "";
a.click();
}
};
xhttp.open("GET", fileUrl, true);
xhttp.responseType = "blob";
xhttp.setRequestHeader('Authorization', token);
xhttp.send();
This piece is not crucial, I was just need it in my case:
xhttp.setRequestHeader('Authorization', token);
This link can be usefull as well: Sending and Receiving Binary Data
本文标签: javascriptHow to make browser download file from xhr requestStack Overflow
版权声明:本文标题:javascript - How to make browser download file from xhr request - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743782116a2538023.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论