Skip to content

Instantly share code, notes, and snippets.

@hjzheng
hjzheng / download-file.js
Created September 3, 2019 03:23 — 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);
@hjzheng
hjzheng / Readme.md
Created August 17, 2021 08:51 — forked from lesonky/Readme.md
如何使用JavaScript实现纯前端读取和导出excel文件