二进制文件流处理笔记

res的形式

   let a = document.createElement("a")
   let blob = new Blob([res], {
      type: "application/vnd.ms-excel", //将会被放入到blob中的数组内容的MIME类型
   })
   let objectUrl = URL.createObjectURL(blob) //生成一个url
   a.setAttribute("href", objectUrl)
   a.setAttribute("download", "盘点模板.xls")
   a.click()
posted @ 2020-05-21 20:01  易函123  阅读(299)  评论(0编辑  收藏  举报