Javascript自定义远程blob下载器代码
2026/6/14 18:57:39 网站建设 项目流程

Javascript自定义远程blob下载器代码

下载器

// Excel|Word|pdf等附件下载,add by tj$.downloadFile=function(response){constfilename=decodeURI(response.headers['content-disposition'].split('filename=')[1]).replace(newRegExp('"','g'),'');constblob=newBlob([response.data],{type:response.headers['content-type']||'application/octet-stream',});constlink=document.createElement('a');link.href=URL.createObjectURL(blob);link.download=filename;document.body.appendChild(link);link.click();document.body.removeChild(link);};// Excel|Word|pdf等附件下载 end

vue2调用样例

this.loading=true;this.exporting=true;axios.get(this.listUrl,{params:{params:{...params,}},responseType:'blob',// 设置响应类型为blob}).then((response)=>{// console.log(response);$.downloadFile(response);this.loading=false;this.exporting=false;}).catch((error)=>{this.loading=false;this.exporting=false;console.error('导出文件失败',error);});

需要专业的网站建设服务?

联系我们获取免费的网站建设咨询和方案报价,让我们帮助您实现业务目标

立即咨询