美文网首页
vue 流文件下载

vue 流文件下载

作者: 草祭木初 | 来源:发表于2019-04-04 16:23 被阅读0次

    同事做文件下载
    下载后的文件 无法打开,报 文件已损坏 或 格式不正确

    vue的文件下载, 这里一定要用get 否则下载的文件会打不开
    axios.get(filePath, {
        responseType: 'arraybuffer'   
      }).then(res => {
        let blob = new Blob([res.data], { type: 'application/vnd.ms-exce' })
        let link = document.createElement('a')
        let fileName = '文件名.xls'
        link.href = window.URL.createObjectURL(blob)
        link.download = decodeURIComponent(fileName)
        link.click()
      })
    

    相关文章

      网友评论

          本文标题:vue 流文件下载

          本文链接:https://www.haomeiwen.com/subject/dvlqiqtx.html