js-file-download ,文件下载

龙兴贤
2023-12-01

导出文件接口

1,安装js-file-download 

npm install js-file-download

2,引入文件

import fileDownload from 'js-file-download'

3,代码部分

exportFile () {
        axios.get(url地址, {
        responseType: 'blob',
        // 头部参数
        headers: {
          'Authorization': token,
        },
        // 请求参数
        params: {
          year: 2023,
          town: '330100',
        }
      }).then(res => {
        fileDownload(res.data, '附件' + '.xls')
      })
    },

 类似资料: