vue3导出表格(导出成Execl表)

前言:该封装方法适用于后端返回的数据是文档流的时候

1.在utils文件夹中新建exportExecl.js用于封装方法

javascript 复制代码
export const exportExecl = (fn, name, data = {}) => {
    fn(data).then((res) => {
      const content = res;
      const blob = new Blob([content]);
      const fileName = name;
      if ("download" in document.createElement("a")) {
        // 非IE下载
        const elink = document.createElement("a"); // 创建一个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);
      } else {
        // IE10+下载
        navigator.msSaveBlob(blob, fileName);
      }
    });
  };

2.在请求的接口是中添加请求类型(responseType: 'arraybuffer')和请求头(headers)

javascript 复制代码
// 服务项列表的导出
export function serviceItemExport(query) {
  return request({
    url: '/hct-oms/serviceItem/export',
    method: 'get',
    params: query,
    responseType: 'arraybuffer', // 文档流类型
    headers:{ // 请求头
      'Content-Type':'application/x-www-form-urlencoded'
    }
  })
}

3.使用

javascript 复制代码
<el-button type="primary" @click="exportService">导出</el-button>

import { exportExecl } from '@/utils/exportExecl';
import {
  serviceItemExport, // 服务项列表的导出
} from '@/api/serviceItemList/index';
// 导出

const exportService = () => {
  const data = {ids:datas.ids};
  exportExecl(serviceItemExport, '服务项表.xlsx', data);
};
// 参数1:是请求的接口,后端会返回文档流;参数2:导出的文件名称,自己随便定义;参数3:接口需要传递的数据
相关推荐
程序员小寒3 分钟前
Vue.js 为什么要推出 Vapor Mode?
前端·javascript·vue.js
白菜__10 分钟前
去哪儿小程序逆向分析(酒店)
前端·javascript·爬虫·网络协议·小程序·node.js
前端老曹10 分钟前
Jspreadsheet CE V5 使用手册(保姆版) 二
开发语言·前端·vue.js·学习
IT_陈寒12 分钟前
SpringBoot3.0实战:5个高并发场景下的性能优化技巧,让你的应用快如闪电⚡
前端·人工智能·后端
秋邱12 分钟前
AR 定位技术深度解析:从 GPS 到视觉 SLAM 的轻量化实现
开发语言·前端·网络·人工智能·python·html·ar
老华带你飞16 分钟前
动物救助|流浪狗救助|基于Springboot+vue的流浪狗救助平台设计与实现(源码+数据库+文档)
java·数据库·vue.js·spring boot·论文·毕设·流浪动物救助平台
云飞云共享云桌面19 分钟前
佛山某机械加工设备工厂10个SolidWorks共享一台服务器的软硬件
大数据·运维·服务器·前端·网络·人工智能·性能优化
开发者小天23 分钟前
React中使用classnames的案例
前端·react.js·前端框架
简单的话*30 分钟前
Logback 日志按月归档并保留 180 天,超期自动清理的配置实践
java·前端·python
困惑阿三33 分钟前
深入理解 JavaScript 中的(Promise.race)
开发语言·前端·javascript·ecmascript·reactjs