摘要: 处理逻辑:获取返回文件流,通过 Blob 对象构造文件后下载。 function download(data, filename, type="application/vnd.ms-excel") { let file = new Blob([data], { type: type }); if ( 阅读全文
posted @ 2020-12-03 15:25 eightabs 阅读(1289) 评论(0) 推荐(0) 编辑