当前位置:   article > 正文

vue--前端接收后台传过来的excel文件数据,并在前端做下载_vue vnd.ms-excel格式数据下载

vue vnd.ms-excel格式数据下载

一.思路:

1.利用Bold接收数据

2.利用a标签做文件下载

二.相关代码

  1. axios.post(url, queryParams, { responseType: 'arraybuffer' }).then((_res) => {
  2. const blob = new Blob([_res.data], { type: 'application/vnd.ms-excel;' })
  3. const a = document.createElement('a')
  4. // 生成文件路径
  5. let href = window.URL.createObjectURL(blob)
  6. a.href = href
  7. let _fileName = _res.headers['content-disposition'].split(';')[1].split('=')[1].split('.')[0]
  8. // 文件名中有中文 则对文件名进行转码
  9. a.download = decodeURIComponent(_fileName)
  10. // 利用a标签做下载
  11. document.body.appendChild(a)
  12. a.click()
  13. document.body.removeChild(a)
  14. window.URL.revokeObjectURL(href)
  15. })

三 .代码要点:

1.设置responseType: 'arraybuffer': 解决下载下来的文件乱码问题

2.设置type: 'application/vnd.ms-excel;:设置excel文件的格式.(该格式需要与后台确认)

office中后缀对应的content-type在office 所有后缀对应的 content-type中可以查看

3.若后台传过来的文件名中有中文,则需要对该文件名进行转码

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/770401
推荐阅读
相关标签
  

闽ICP备14008679号