axios({ method: get, url: url, responseType: blob }).then((res) = { console.log(res) ...
axios({
method: 'get',
url: url,
responseType: 'blob'
}).then((res) => {
console.log(res)
if (!res) {
return
}
let blob = new Blob([res.data], {
type: "application/octet-stream"
});
let url = window.URL.createObjectURL(blob)
let link = document.createElement('a')
link.style.display = 'none'
link.href = url
document.body.appendChild(link)
link.click()
})
————————————————
版权声明:本文为CSDN博主「前端大王」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/l17606145618/article/details/106620206
本文标题为:vue前端下载后端返回的文件流
- layui数据表格以及传数据方式 2022-12-13
- 关于 html:如何从 css 表中删除边距和填充 2022-09-21
- javascript 判断当前浏览器版本并判断ie版本 2023-08-08
- jsPlumb+vue创建字段映射关系 2023-10-08
- 1 Vue - 简介 2023-10-08
- ajax实现输入提示效果 2023-02-14
- vue keep-alive 2023-10-08
- 深入浅析AjaxFileUpload实现单个文件的 Ajax 文件上传库 2022-12-15
- JS实现左侧菜单工具栏 2022-08-31
- 基于CORS实现WebApi Ajax 跨域请求解决方法 2023-02-14