vue 用axios实现调用接口下载excel

Posted 码农1213

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 用axios实现调用接口下载excel相关的知识,希望对你有一定的参考价值。

了解的方式有两种:

1. 用a标签,href设置为后端提供的excel接口

<a href="excel接口">导出</a>

简单方便,缺点就是当有token校验时,不适合

2. 用axios

把token放在请求的header里边

import axios from axios
import { getToken } from js-cookie;

methods: {
    exportExcel () {
        let url = http...,
            token = getToken();
        axios.get(url, {
            headers:{
                "Admin_token":token
            },
            responseType: blob, //二进制流
        }).then(function (res) {
            if(!res) return
            let blob = new Blob([res.data], {type: application/vnd.ms-excel;charset=utf-8})
            let url = window.URL.createObjectURL(blob);
            let aLink = document.createElement("a");
            aLink.style.display = "none";
            aLink.href = url;
            aLink.setAttribute("download", "excel.xls");
            document.body.appendChild(aLink);
            aLink.click();
            document.body.removeChild(aLink); 
            window.URL.revokeObjectURL(url); 
        }).catch(function (error) {
            console.log(error)
        });
    }
}

 

 

 

参考:https://blog.csdn.net/xuesheng1610748/article/details/83865679

以上是关于vue 用axios实现调用接口下载excel的主要内容,如果未能解决你的问题,请参考以下文章

Vue + axios + SpringBoot 2实现导出Excel

vue+axios实现文件下载

vue+axios实现文件下载

前端下载Excel时 URL.createObjectURL报错问题

vue 导出excel 乱码

vue+express+mongodb 实现 增删改查