前端文件下载---后端返回文件流类型

博客内容介绍了前端如何处理后端返回的文件流进行下载,重点在于设置responseType为arraybuffer或blob,并根据文件类型设定Blob的type属性,如Excel的type为'application/vnd.ms-excel;charset=utf-8',PDF的type为'application/pdf',以及如何根据实际返回的数据调整Blob构造函数中的参数。
摘要由CSDN通过智能技术生成

后端返回文件流类型,前端下载要进行处理,处理代码如下:

import request from '@/router/axios';
//将后台返回的文件流做处理,导出excel
            exportSearchList(url,name,params,time,type) {
            request({
                method: type,
                url: url,
                data:params,//post请求 
                // params,//get请求
                responseType: "arraybuffer"
            }).then(function(res){
            console.log("返回的二进制流文件", res)
            if(!res) return;
            //fileName:下载的文件名
            // let currentData=timeFormat(new Date())
            var fileName = name+time
            let blob = new Blob([res], {type: 'application/vnd.ms-excel;charset=utf-8'});
        
            // 针对ie浏览器
            if (window.navigator && window.navigator.msSaveOrOpenBlob) {
                window.navigator.msSaveOrOpenBlob(blob, fileName);
                } else {
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值