其他分享
首页 > 其他分享> > vue下载文件流

vue下载文件流

作者:互联网

主要针对后台返回的文件流进行处理:js文件

export function download (data,titName) {
    if(!data){
      return
    }
    const content = data
    const blob = new Blob([content],{type: "application/vnd.ms-excel"})
    const fileName = titName?titName: ''
    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.click()
      URL.revokeObjectURL(elink.href) // 释放URL 对象
      document.body.removeChild(elink)
    } else { // IE10+下载
      navigator.msSaveBlob(blob, fileName)
    }
  }
import { download } from "@/utils/index";    引入

请求接口时必加 “responseType: 'blob'”不然下载下来文件有问题

export function downloadFile(data) {
  return request({
    url: url,
    method: 'get',
    responseType: 'blob'
  })
}

 

标签:文件,vue,elink,blob,download,const,document,data,下载
来源: https://www.cnblogs.com/8023-CHD/p/16225058.html