前端实现流文件下载

  • Post author:
  • Post category:其他




前端实现流文档下载

axios请求API接口写法如下:

//要在 axios 的 config 配置 responseType: ‘blob’ (非常关键)
export function download (params) {
  return request({ url: `${url}/downloadTemplate`, method: 'get', params , responseType: 'blob'})
}

前端解析代码如下:

 // 导出下载
    download() {    //这是download的点击事件函数
      download().then((res)=>{   //这个download是封装的API接口函数
      console.log(res)
        const url = window.URL.createObjectURL(new Blob([res]))
        const link = document.createElement('a')
        link.style.display = 'none'
        link.href = url
      //文件名
        link.setAttribute('download', 'api_.excel')
        document.body.appendChild(link)
        link.click()
      })
    }



版权声明:本文为loveskin原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。