vue|vue 从后台获取文件流 导出excel



import axios from 'axios'export default { post(url, param, title) { axios.post(url, param, { responseType: 'arraybuffer' }) .then((res) => { if(res.status == "200") { const aLink = document.createElement("a"); let blob = new Blob([res.data], {type: "application/vnd.ms-excel"}) aLink.href = https://www.it610.com/article/URL.createObjectURL(blob) aLink.setAttribute('download', '客户资源' + '.xlsx') // 设置下载文件名称 aLink.click() //document.body.appendChild(aLink) this.$refs.loadElement.appendChild(aLink) } }) } }

【vue|vue 从后台获取文件流 导出excel】

    推荐阅读