当前位置:   article > 正文

js通过a标签下载文件

js通过a标签下载文件
const downloadExcelFile = async function (api, params, name) {
  const res = await this.$get(api, params, { responseType: 'blob'});
  try {
    let url = window.URL.createObjectURL(new Blob([res]))
    let link = document.createElement('a')
    link.style.display = 'none'
    link.href = url
    
    link.setAttribute('download', `${name}`)
    document.body.appendChild(link);
    link.click() //执行下载
    window.URL.revokeObjectURL(link.href) //释放url
    document.body.removeChild(link) //释放标签
  } catch (e) {
    this.$notify.error({
      title: '错误',
      message: '下载文件失败'
    });
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号