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')
})
},