vue中使用axios处理post方法导出excel表格(后端返回文件流)

Posted zqqya

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中使用axios处理post方法导出excel表格(后端返回文件流)相关的知识,希望对你有一定的参考价值。

使用: vue、axios

接口要求: post方法、入参为json格式、出参文件流

1.请求函数

exportExcel: function(form) {
        return axios({ // 用axios发送post请求
            method: ‘post‘,
            url: ‘/serviceTime/exportData‘, // 请求地址
            data: form, // 参数
            responseType: ‘blob‘, // 表明返回服务器返回的数据类型
            headers: {
                ‘Content-Type‘: ‘application/json‘
            }
        })
    }

2.导出函数

const params = {
    test: 111
}
exportExcel(params).then(res => { // 处理返回的文件流
    const blob = new Blob([res]);
    const fileName = ‘统计.xlsx‘;
    const elink = document.createElement(‘a‘);
    elink.download = fileName;
    elink.style.display = ‘none‘;
    elink.href = URL.createObjectURL(blob);
    document.body.appendChild(elink);
    elink.click();
    URL.revokeObjectURL(elink.href); // 释放URL 对象
    document.body.removeChild(elink);
})

记录下,方便查找

以上是关于vue中使用axios处理post方法导出excel表格(后端返回文件流)的主要内容,如果未能解决你的问题,请参考以下文章

vue中axios导出文件

vue axios导出xsl文件(二进制)

axios的post请求方法---以Vue示例

vue Excel导出 [post请求+提示语]

Vue基础入门讲义-异步请求axios

axios请求方法封装.