A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

1.接口返回的流和头部:

2.下载流文件的代码

方法二:是用了 blob
不管哪种方法,记得设置  responseType  !!!!!

附上代码:
[url=][/url]
//      导出订单      exportBill:function () {        let url_post = Vue.prototype.api.apiList.EXPORT_BILL;        let params_post = {          orderStartDate: this.timepickerDateFormat(this.rangeTime[0]) || this.rangeTime[0] || '',          orderEndDate: this.timepickerDateFormat(this.rangeTime[1]) || this.rangeTime[1] || '',          prodCode: this.prodId,          promoteFlag: this.promotionSiteId,          policyStatusList: this.tableBillStateCheckedData,        };        Vue.axios.post(url_post,params_post,{responseType: 'arraybuffer'}).then((res) => {          let fileName = res.headers['content-disposition'].match(/fushun(\S*)xls/)[0];          fileDownload(res.data,fileName);  //如果用方法一 ,这里需要安装 npm install js-file-download --save ,然后引用 var fileDownload = require('js-file-download'),使用详情见github;      // let blob = new Blob([res.data], {type: "application/vnd.ms-excel"});

      // let objectUrl = URL.createObjectURL(blob);

      // window.location.href = objectUrl;  

    }).catch(function (res) {}); },
点击有惊喜


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马