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?

Share Improve this question edited Sep 17, 2015 at 6:50 Danny Fardy Jhonston Bermúdez 5,5715 gold badges26 silver badges38 bronze badges asked Sep 17, 2015 at 6:21 Max KoretskyiMax Koretskyi 106k68 gold badges353 silver badges516 bronze badges 5
  • 2 You can stuff the server response into a data URL, put it on an <a download> and trigger a click. Note that the download 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
Add a ment  | 

1 Answer 1

Reset to default 8

This 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