前端下载EXCEL文件,后端返回文件流的处理

转载:https://www.cnblogs.com/coconutGirl/p/12605562.html

前端下载EXCEL文件,后端返回文件流的处理

axios({
  url: '下载接口URL',
  method: 'post',
  data: {},
  responseType: 'blob'
}).then((res) => {
  // data就是接口返回的文件流
  let data = res.data
  if (data) {
    let attrs = res.headers['content-disposition'].split(';')
  // 获取文件名
    let fileName = ''
    // 不用管fileName在第几个位置,只要=前面是fileName,就取=后面的值
    for (let i = 0, l = attrs.length; i < l; i++) {
      let temp = attrs[i].split('=')
      if (temp.length > 1 && temp[0] === 'fileName') {
        fileName = temp[1]
        break
      }
    }
    fileName = decodeURIComponent(fileName)
 
    // 获取数据类型
    let type = res.headers['content-type'].split(';')[0]
    let blob = new Blob([res.data], { type: type })
    const a = document.createElement('a')
 
    // 创建URL
    const blobUrl = window.URL.createObjectURL(blob)
    a.download = fileName
    a.href = blobUrl
    document.body.appendChild(a)
 
    // 下载文件
    a.click()
 
    // 释放内存
    URL.revokeObjectURL(blobUrl)
    document.body.removeChild(a)
  } else {
    console.log('error', data)
  }
})

猜你喜欢

转载自blog.csdn.net/xiaoma19941027/article/details/106907448