vue中下载excel文件4种方法

时间:2025-03-28 13:40:35

目录

1、通过url下载

2、通过 a 标签 download 属性结合 blob 构造函数下载

3、通过 js-file-download 插件

 4、使用fetch下载


1、通过url下载

即后端提供文件的地址,直接使用浏览器去下载

通过 = 文件路径下载

= `${}/operation/ruleImport/template`


通过 (url, '_blank')

(`${}/operation/ruleImport/template`)


这两种使用方法的不同:

:当前页跳转,也就是重新定位当前页;只能在网站中打开本网站的网页。
:在新窗口中打开链接;可以在网站上打开另外一个网站的地址。

2、通过 a 标签 download 属性结合 blob 构造函数下载


a 标签的 download 属性是 HTML5 标准新增的,作用是触发浏览器的下载操作而不是导航到下载的 url,这个属性可以设置下载时使用新的文件名称。

前端创建超链接,接收后端的文件流:

(`/operation/ruleImport/template`, {
        responseType: "blob" //服务器响应的数据类型,可以是 'arraybuffer', 'blob', 'document', 'json', 'text', 'stream',默认是'json'
    })
    .then(res => 
        if(!res) return
        const blob = new Blob([], { type: 'application/-excel' }) // 构造一个blob对象来处理数据,并设置文件类型
         
        if () { //兼容IE10
            (blob, )
        } else {
            const href = (blob) //创建新的URL表示指定的blob对象
            const a = ('a') //创建a标签
             = 'none'
             = href // 指定下载链接
             =  //指定下载文件名
            () //触发下载
            () //释放URL对象
        }
        // 这里也可以不创建a链接,直接(href)也能下载
    })
    .catch(err => {
        (err)
    })

注:请求后台接口时要在请求头上加{responseType: 'blob'};download 设置文件名时,可以直接设置扩展名,如果没有设置浏览器将自动检测正确的文件扩展名并添加到文件。


3、通过 js-file-download 插件


安装:

npm install js-file-download --S

使用

import fileDownload from 'js-file-download'
 
(`/operation/ruleImport/template`, {
        responseType: 'blob' //返回的数据类型
    })
    .then(res => {
        fileDownload(, )
    })

 4、使用fetch下载

      exportFile() {
          fetch('http://127.0.0.1:8765/course/exportCourse/33', {
              method: 'GET',
              headers: new Headers({
                  'Authorization': ('Authorization') 
              }),
          })
         .then(res => ())
         .then(data => {
              const blobUrl = (data);
              const a = ('a');
               = +'.xlsx';
               = blobUrl;
              ();
      });
      },

如果这4种方法,还是没有解决你下载excel文件问题,欢迎留言。