axios get post下载文件

Posted yu-zeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios get post下载文件相关的知识,希望对你有一定的参考价值。


let url = URLParser.submitUrl(`/download`);
return new Promise((resolve, reject) => {
axios({
method: ‘get‘,// post
url: url,
     data : ‘‘,
responseType: ‘blob‘
}).then((response) => {
const blob = new Blob([response.data]);
let fileName = ‘notification-request.xsd‘;
if (‘download‘ in document.createElement(‘a‘)) { // 非IE下载
const elink = document.createElement(‘a‘);
elink.download = fileName;
elink.style.display = ‘none‘;
elink.href = URL.createObjectURL(blob);
document.body.appendChild(elink);
elink.click();
URL.revokeObjectURL(elink.href);// 释放URL 对象
document.body.removeChild(elink)
} else { // IE10+下载
navigator.msSaveBlob(blob, fileName)
}
resolve(response);
}).catch((err) => {
reject(err)
})
})






























以上是关于axios get post下载文件的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 axios 下载文件

前段框架——Vue的get和post请求数据

VUE中 axios GET和POST 如何使用

vue+axios实现文件下载

vue 里怎么用 axios 实现 post 请求下载文件

为啥从远程 AWS S3 服务器下载 json 文件时 axios GET 错误