Vue+axios下载文件
发布日期:2021-06-29 11:14:32 浏览次数:3 分类:技术文章

本文共 678 字,大约阅读时间需要 2 分钟。

Vue+axios下载文件

download() {
this.$http({
url: this.$http.adornUrl(""), method: "post", params: this.$http.adornParams({
}), responseType: 'blob', }).then((res) => {
const link = document.createElement('a') let blob = new Blob([res.data], {
type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" }) let objectUrl = URL.createObjectURL(blob) link.href = objectUrl link.download = decodeURI(res.headers.filename) link.click() //下载文件 URL.revokeObjectURL(objectUrl); // 释放内存 }); },

转载地址:https://blog.csdn.net/zwhy123/article/details/117130772 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:Element UI table宽度自适应
下一篇:Vue项目页面跳转时,窗口上方显示进度条(Vue使用NProgress)

发表评论

最新留言

能坚持,总会有不一样的收获!
[***.219.124.196]2024年04月25日 20时22分01秒