在common.js里面写方法
const downBlob = (data, filePath) => {
const blob = new Blob([data])
if ('download' in document.createElement('a')) { // 非IE下载
const elink = document.createElement('a')
elink.download = filePath
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, filePath)
}
}
export const COMMON_API = {
downBlob
}
引用的地方
引入: import { COMMON_API } from '@/utils/common' // 公共方法
使用:
调用接口的地方类型要改: responseType: 'blob'
if (data.size != 50) {
let filePath = `${name}.xlsx`
COMMON_API.downBlob(data, filePath)
}