美文网首页
new Blob 前端下载

new Blob 前端下载

作者: 小小Bug你别跑 | 来源:发表于2022-07-18 10:56 被阅读0次
try{
 const link = document.createElement('a')
 const blob = new Blob(['xxxxx.downLoad'], { type: 'application/vnd.ms-excel' })
 link.style.display = 'none'
 link.href = URL.createObjectURL(blob)
 link.download = '下载文件名称.xlsx'
 document.body.appendChild(link)
 link.click()
 document.body.removeChild(link)
} catch(err){
  this.$message.error(err)
}

相关文章

网友评论

      本文标题:new Blob 前端下载

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