Vue使用axios发送post请求下载Excel文件
axios({
method: 'post',
url: downloadUrl,
headers: {
Authorization: this.token
},
data: {
password: this.exportPassword
},
responseType: 'blob'
}).then(res => {
const link = document.createElement('a')
const blob = new Blob([res.data], { type: 'application/vnd.ms-excel' })
link.style.display = 'none'
link.href = URL.createObjectURL(blob)
link.setAttribute('download', `${schoolName}派位结果.xlsx`)
document.body.appendChild(link)
link.click()
document.body.removeChild(link)
})