Skip to content

Instantly share code, notes, and snippets.

@cuneydbolukoglu
Last active March 22, 2022 14:40
Show Gist options
  • Save cuneydbolukoglu/8ff34655ef3d6f2ebccffbeb68512cd5 to your computer and use it in GitHub Desktop.
Save cuneydbolukoglu/8ff34655ef3d6f2ebccffbeb68512cd5 to your computer and use it in GitHub Desktop.
Download files with Axios
axios({
url: `/api/download/${id}/`,
method: 'GET',
responseType: 'blob', // important
}).then((response) => {
const url = window.URL.createObjectURL(new Blob([response], { type: response.type }));
const link = document.createElement('a');
link.href = url;
link.setAttribute('download', fileName);
link.target = '_blank'
link.click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment