后端返回的pdf,word,excel的文件流导出需要让浏览器下载文件
1、安装js-file-download组件
npm install js-file-download --save
2、在对应的页面引用文章来源:https://www.toymoban.com/news/detail-721082.html
import fileDownload from "js-file-download";
3、在接口返回结果后直接调用即可文章来源地址https://www.toymoban.com/news/detail-721082.html
let data={
id:processId,
customerId:customerId
}
//后台导出文件接口
feeNotification(data).then(res => {
//调用fileDownload即可
fileDownload(res, 'xxxx.xlsx');
})
到了这里,关于前端用 js-file-download组件下载后端返回的pdf,word,excel文件的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!