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下载文件的主要内容,如果未能解决你的问题,请参考以下文章