Vue使用axios发送post请求下载Excel文件

628 阅读1分钟

Vue使用axios发送post请求下载Excel文件

axios({
    method: 'post',
    url: downloadUrl,
    headers: {
	Authorization: this.token
    },
    data: {
	password: this.exportPassword
    },
    // 二进制流文件,一定要设置成blob,默认是json
    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)
})