后端返回的文件是一个blob格式的流文件,前端需要进行转码,得到一个url,实现下载文件的功能。 使用window.location.href=url ,window.open(url) 也可以实现文件下载,但下载需要传请求头时,就不适用这种方法了。 通过axios设置服务器响应的数据类型,可以下载后台返回的二进制流文件。
exportExcel(url,params={}) {
axios.get(url,{params: params, responseType: 'blob'})
.then (res => {
console.log('返回的二进制流文件',res);
if(!res) return
const fileName = decodeURIComponent(res.headers["content-disposition"].split("utf-8''")[1])
const blob = new Blob([res.data], {type: 'application/vnd.ms-excel;charset=utf-8'})
let link = document.createElement("a")
let href = window.URL.createObjectURL(blob);
link.href = href
link.download = fileName
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
window.URL.revokeObjectURL(href);
})
}
注意:res.headers中获取下载文件的文件名
|