Vue 采用blob下载后端返回的excel流文件乱码问题

Posted wenjuan-blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 采用blob下载后端返回的excel流文件乱码问题相关的知识,希望对你有一定的参考价值。

  1. 没有文件服务器, 前后端采用文件流方式下载,后端返回二进制乱码时,前端使用blob对象进行处理
    2.采用的是axios请求方式
  2. this.$http.post("download", { fileName: file.filename })
    .then(function(response) {
    let blob = new Blob([response.data], {type: ‘application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8‘});
    let downloadElement = document.createElement(‘a‘);
    let href = window.URL.createObjectURL(blob); //创建下载的链接
    downloadElement.href = href;
    downloadElement.download = ‘xxx.xlsx‘; //下载后文件名
    document.body.appendChild(downloadElement);
    downloadElement.click(); //点击下载
    document.body.removeChild(downloadElement); //下载完成移除元素
    window.URL.revokeObjectURL(href); //释放掉blob对象
    })

4.分享链接 https://www.oschina.net/question/3910533_2283267













以上是关于Vue 采用blob下载后端返回的excel流文件乱码问题的主要内容,如果未能解决你的问题,请参考以下文章

vue中使用axios处理post方法导出excel表格(后端返回文件流)

前端接受后端 blob 文件流 并进行展示和下载

Vue处理后端返回文件流实现下载

Vue处理后端返回文件流实现下载

vue+axios 下载后端返回的文件流

Vue.js使用Blob的方式实现excel表格的下载(流文件下载)