首页 > 其他分享 >file-saver 下载文件包使用

file-saver 下载文件包使用

时间:2022-12-01 14:25:07浏览次数:43  
标签:file res saver blob downForm 下载

npm install file-saver --save
this.$http.downFileApi(this.downForm).then((res) => { this.spinning = false; const blob = new Blob([res.data], { type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", }); saveAs(blob, decodeURI(res.headers["download-filename"])); this.downForm.timedata = null; });

 

标签:file,res,saver,blob,downForm,下载
From: https://www.cnblogs.com/whlBooK/p/16941285.html

相关文章