前端处理后台返回的文件流

axios({
  url: '下载接口URL',
  method: 'post',

  baseURL: process.env.VUE_APP_BASE_API,

  params: params,

  headers: { 'token': getToken() }

  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].trim() === '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)

       // 方法二:通过FileReader对象实现下载

       const reader = new FileReader()

        reader.readAsDataURL(res.data)

        reader.onload = (e) => {

          const a = document.createElement('a')

          a.download = fileName

          // console.log('e.target.result', e.target.result)

          a.href = e.target.result

          a.style.display = 'none'

          document.body.appendChild(a)

          a.click()

          document.body.removeChild(a)

        }

  } else {
    console.log('error', data)
  }
})

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值