vue中如何下载excel流⽂件及设置下载⽂件名
⽬录
概述
1、通过 url 下载
2、通过 a 标签 download 属性结合 blob 构造函数下载
3、通过 js-file-download 插件
概述
导出excel需求,当点击下载模板或下载反馈结果,axios发起后端接⼝请求,返回的数据获取 response 时出现乱码,如图:现总结如下⼏种处理⽅法。
1、通过 url 下载
即后端提供⽂件的地址,直接使⽤浏览器去下载
通过window.location.href = ⽂件路径下载
window.location.href = `${igin}/operation/ruleImport/template`
通过 window.open(url, '_blank')
window.open(`${igin}/operation/ruleImport/template`)
这两种使⽤⽅法的不同:
window.location:当前页跳转,也就是重新定位当前页;只能在⽹站中打开本⽹站的⽹页。
navigator标签window.open:在新窗⼝中打开链接;可以在⽹站上打开另外⼀个⽹站的地址。
2、通过 a 标签 download 属性结合 blob 构造函数下载
a 标签的 download 属性是 HTML5 标准新增的,作⽤是触发浏览器的下载操作⽽不是导航到下载的 url,这个属性可以设置下载时使⽤新的⽂件名称。
前端创建超链接,接收后端的⽂件流:
<(`/operation/ruleImport/template`, {
responseType: "blob" //服务器响应的数据类型,可以是 'arraybuffer', 'blob', 'document', 'json', 'text', 'stream',默认是'json'
})
.then(res =>
if(!res) return
const blob = new Blob([res.data], { type: 'application/vnd.ms-excel' }) // 构造⼀个blob对象来处理数据,并设置⽂件类型
if (window.navigator.msSaveOrOpenBlob) { //兼容IE10
navigator.msSaveBlob(blob, this.filename)
} else {
const href = ateObjectURL(blob) //创建新的URL表⽰指定的blob对象
const a = ateElement('a') //创建a标签
a.style.display = 'none'
a.href = href // 指定下载链接
a.download = this.filename //指定下载⽂件名
a.click() //触发下载
}
// 这⾥也可以不创建a链接,直接window.open(href)也能下载
})
.catch(err => {
console.log(err)
})
注:请求后台接⼝时要在请求头上加{responseType: 'blob'};download 设置⽂件名时,可以直接设置扩展名,如果没有设置浏览器将⾃动检测正确的⽂件扩展名并添加到⽂件。
3、通过 js-file-download 插件
安装:
npm install js-file-download --S
使⽤
import fileDownload from 'js-file-download'
<(`/operation/ruleImport/template`, {
responseType: 'blob' //返回的数据类型
})
.then(res => {
fileDownload(res.data, this.fileName)
})
以上就是vue中如何下载excel流⽂件及设置下载⽂件名的详细内容,更多关于vue中下载excel流⽂件及设置下载⽂件名的资料请关注其它相关⽂章!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论