须将axios 配置中的
responseType
设置为arraybuffer
文章来源:https://www.toymoban.com/news/detail-745424.html
文章来源地址https://www.toymoban.com/news/detail-745424.html
text/comma-separated-values, text/csv, application/csv, application/excel, application/vnd.ms-excel, application/vnd.msexcel
// 下载文件
async exportConsumeList() {
try {
let res = await exportConsumeList()
var blob = new Blob([res], {
type: 'text/csv,charset=UTF-8',
})
if ('download' in document.createElement('a')){
// 非IE下载
var downloadElement = document.createElement('a')
var href = window.URL.createObjectURL(blob) //创建下载的链接
downloadElement.href = href
downloadElement.download = '用户数据.csv' //下载后文件名
document.body.appendChild(downloadElement)
downloadElement.click() //点击下载
document.body.removeChild(downloadElement) //下载完成移除元素
window.URL.revokeObjectURL(href) //释放掉blob对象
}else {
// IE10+下载
navigator.msSaveBlob(blob, fileName);
}
} catch (error) {
console.log(error)
}
},
到了这里,关于axios下载csv文件下载-功能实现的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!