axios导出 excel
Posted ~冰蝶~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios导出 excel相关的知识,希望对你有一定的参考价值。
this.axios({ methods: ‘get‘, url: url, responseType: ‘blob‘ }).then(res => { const blob = new Blob([res]) const fileName = ‘导出信息.xls‘ 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.clink() URL.revokeObjectURL(elink.href) // 释放URL 对象 document.body.removeChild(elink) } else { // IE10+下载 navigator.msSaveBlob(blob, fileName) } })
以上是关于axios导出 excel的主要内容,如果未能解决你的问题,请参考以下文章
基于Vue + axios + WebApi + NPOI导出Excel文件