{ const url = window.URL.createObjectURL(res.data); const link = document.createElement("a"); link .href = url; link .download = ""_a标签文件下载跨域问题">
当前位置:   article > 正文

a标签下载和文件流下载_a标签文件下载跨域问题

a标签文件下载跨域问题

a标签直接下载

export const downloadFile = (obj, fileName) => {
  const url = window.URL.createObjectURL(new Blob([obj]))
  const link = document.createElement('a')
  link.style.display = 'none'
  link.href = url
  link.setAttribute('download', fileName)
  document.body.appendChild(link)
  link.click()
  document.body.removeChild(link)
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

a标签下载跨域解决办法

 axios({
   responseType: "blob",
   url: fileUrl, // 下载跨域的地址
 }).then((res) => {
   const url = window.URL.createObjectURL(res.data);
   const link = document.createElement("a");
   link .href = url;
   link .download = ""; // 文件名
   link .click();
   window.URL.revokeObjectURL(url)
 });
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

// blob 响应类型的接口 转换为 json类型

onUploadFileSuccess(res) {
      console.log('onUploadFileSuccess', res)
      const reader = new FileReader()
      reader.onload = () => {
        console.log(reader)
        const data = JSON.parse(reader.result)
        if (data.code === 200) {
          this.$message({ message: '导入成功', type: 'success' })
        } else {
          this.$message({ message: data.message, type: 'error' })
        }
        this.getList()
      }
      reader.readAsText(res.data)
    },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/63569
推荐阅读
相关标签
  

闽ICP备14008679号