Skip to content

Instantly share code, notes, and snippets.

View gunkiddedy's full-sized avatar
🏠
Working from home

dedy gunkid gunkiddedy

🏠
Working from home
  • Gunungkidul, Yogyakarta, Indonesia
View GitHub Profile
@gunkiddedy
gunkiddedy / download-file.js
Created November 30, 2020 05:50 — forked from javilobo8/download-file.js
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);