美文网首页
vue下载文件流

vue下载文件流

作者: 吴小冷 | 来源:发表于2021-06-29 14:48 被阅读0次
//接口请求
getDownXlsx({ type: 'certificatemicroabilityME' }).then(res => {
      //创建a标签(下载)
      let a = document.createElement('a');
      //ArrayBuffer 转为 Blob
      let blob = new Blob([res.data], { type: "application/vnd.ms-excel" });
      let objectUrl = URL.createObjectURL(blob);
      a.setAttribute("href", objectUrl);
      a.setAttribute("download", '模板.xls');
      a.click();
})

相关文章

网友评论

      本文标题:vue下载文件流

      本文链接:https://www.haomeiwen.com/subject/dtfkultx.html