axios导出 excel

Posted ~冰蝶~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios导出 excel相关的知识,希望对你有一定的参考价值。

this.axios({
  methods: ‘get‘,
  url: url,
  responseType: ‘blob‘
}).then(res => {
  const blob = new Blob([res])
  const fileName = ‘导出信息.xls‘
  if (‘download‘ in document.createElement(‘a‘)) { // 非IE下载
    const elink = document.createElement(‘a‘)
    elink.download = fileName
    elink.style.display = ‘none‘
    elink.href = URL.createObjectURL(blob)
    document.body.appendChild(elink)
    elink.clink()
    URL.revokeObjectURL(elink.href) // 释放URL 对象
    document.body.removeChild(elink)
  } else { // IE10+下载
    navigator.msSaveBlob(blob, fileName)
  }
})

 

以上是关于axios导出 excel的主要内容,如果未能解决你的问题,请参考以下文章

axios请求导出数据到excel文件

基于Vue + axios + WebApi + NPOI导出Excel文件

vue中使用axios处理post方法导出excel表格(后端返回文件流)

vue中axios导出文件

vue中axios导出文件

axios 请求接口获取文件流数据导出数据到excel,解决乱码