Skip to content

Instantly share code, notes, and snippets.

@supercocoa
Forked from javilobo8/download-file.js
Created October 30, 2018 11:51
Show Gist options
  • Save supercocoa/b3a14e0b47bfd030ddcc2551f1cc076e to your computer and use it in GitHub Desktop.
Save supercocoa/b3a14e0b47bfd030ddcc2551f1cc076e to your computer and use it in GitHub Desktop.
Download files with AJAX (axios)
axios({
url: 'http://localhost:5000/static/example.pdf',
method: 'GET',
responseType: 'blob', // important
}).then((response) => {
const url = window.URL.createObjectURL(new Blob([response.data]));
const link = document.createElement('a');
link.href = url;
link.setAttribute('download', 'file.pdf');
document.body.appendChild(link);
link.click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment