尝试使用Axios(VueJS)弄乱数据下载Excel文件

时间:2020-04-15 16:00:58

标签: javascript excel file vue.js axios

我正在尝试使用axios下载excel文件,但文件混乱,无法找到原因,请您帮忙?

axios.post(backendURL + 'api/client?file_name='+file_name,params, {
    file_name: file_name
}, {
    responseType: 'blob'
}).then((response) => {
    const url = URL.createObjectURL(new Blob([response.data], {
        type: 'application/vnd.ms-excel'
    }))
    const link = document.createElement('a')
    link.href = url
    link.setAttribute('download', file_name)
    document.body.appendChild(link)
    link.click()
});

enter image description here

0 个答案:

没有答案
相关问题