npm install --save xlsx file-saver
\src\utils\
目錄下新建excelHelper.js
文件import Vue from 'vue' import FileSaver from "file-saver"; import XLSX from "xlsx"; export default { /** * @param tableId 要導出的表格ID * @param fileName 文件導出名稱 * @param fileType 文件類型 * @param rawFlag - true 導出的內容只作解析,不進行格式轉換 * @returns {*} */ exportExcel(tableId,fileName,fileType,rawFlag) { let fix = document.querySelector('.el-table__fixed'); let wb; /* 判斷要導出的節點中是否有fixed的表格,若是有,轉換excel時先將該dom移除,而後append回去 */ if(fix){ wb = XLSX.utils.table_to_book(document.querySelector("#"+tableId).removeChild(fix),{raw:rawFlag}); document.querySelector("#"+tableId).appendChild(fix); }else{ wb = XLSX.utils.table_to_book(document.querySelector("#"+tableId),{raw:rawFlag}); } /* 獲取二進制字符串做爲輸出 */ let wbout = XLSX.write(wb, { bookType: "xlsx", bookSST: true, type: "array" }); try { FileSaver.saveAs( //Blob 對象表示一個不可變、原始數據的類文件對象。 //Blob 表示的不必定是JavaScript原生格式的數據。 //File 接口基於Blob,繼承了 blob 的功能並將其擴展使其支持用戶系統上的文件。 //返回一個新建立的 Blob 對象,其內容由參數中給定的數組串聯組成。 new Blob([wbout], { type: "application/octet-stream" }), //設置導出文件名稱 fileName + fileType ); } catch (e) { if (typeof console !== "undefined") console.log(e, wbout); } return wbout; } }
excelHelper.js
import excelHelper from "@/utils/excelHelper";
excelHelper.exportExcel("table","fileName",".xls",true);
table
是爲表格綁定的id,fileName
是導出的文件名稱,.xls
是導出的文件類型,true
指明導出的內容只作解析不進行格式轉換let fix = document.querySelector('.el-table__fixed'); let wb; //判斷要導出的節點中是否有fixed的表格,若是有,轉換excel時先將該dom移除,而後append回去 if(fix){ wb = XLSX.utils.table_to_book(document.querySelector('#table').removeChild(fix)); document.querySelector('#table').appendChild(fix); }else{ wb = XLSX.utils.table_to_book(document.querySelector('#table')); }
推薦博客:https://blog.csdn.net/qq_40614207/article/details/94003793vue