Vue表格导出Excel表格

306 阅读2分钟

Vue表格导出Excel表格

实现方法(一)

  • 使用的前端UI组件库是TDesign;Blob.js 与 Export2Excel.js 文件的代码放在实现方法(一)最后面。

  • 这里列举了两种方式实现导出,第二种实现方式无需安装依赖包。

1. 需要安装3个依赖包

npm install -D script-loader
npm install -S file-saver xlsx

2. 在src的utils目录下新增一个存放excel文件的文件夹,我这里就命名excel;同时在utils目录下新增一个common.js文件用于存放封装的表格导入导出函数。

Snipaste_2022-10-21_19-52-25.png

3. common.js代码如下:

import XLSX from 'xlsx';
import Export2Excel from '@/utils/excel/Export2Excel'
import { MessagePlugin as Message } from '@tencent/wxpay-mis-ui';

export const handleExcel = {
    /**
     * 函数描述: 导出excel
     * @param {Array} tableData must,表格数据 
     * @param {Array} tableColumns must,表头配置
     * @param {String} fileTitle Optional,默认值: '列表', 需要生成的文件名
     * @param {String} fileType Optional,默认值: 'xlsx',需要生成的文件格式
     * @return void
     */
    export: ({ 
        tableData, 
        tableColumns, 
        fileTitle, 
        fileType 
    }) => {
        if (!Array.isArray(tableData) || !Array.isArray(tableColumns)) {
            return Message.error('表格数据/表头配置 入参必须为Array类型');
        }
        if (!tableData || tableData.length === 0) {
            return Message.error('表格数据为空,无效导出');
        }
        if (!tableColumns || tableColumns.length === 0) {
            return Message.error('缺少表头配置参数,请检查入参');
        }
        require.ensure([], () => {
            const { export_json_to_excel } = Export2Excel;
            const excelHeaderKey = tableColumns.map(i => i.colKey);
            const excelBody = tableColumns.map(i => i.title);
            const data = formatTableData(excelHeaderKey, tableData);
            fileTitle = fileTitle || '列表';
            fileType = fileType || 'xlsx';
            export_json_to_excel({ excelBody, data, fileTitle, fileType });
        })
    },
};

const formatTableData = (excelHeaderKey, tableData) => {
    return tableData.map(i => excelHeaderKey.map(k => i[k]));
};

4. 创建一个页面,例如在views目录下创建一个index.vue页面

<template>
  <div>
    <h1>excel导出</h1>
    <div>
        <t-button @click="exportExcel">点击导出excel</t-button>
    </div>
    <div>
        <t-table
          id="10086"
          :data="tableData" 
          :columns="tableColumns" 
          rowKey="colKey"
          bordered 
          hover />
    </div>
  </div>
</template>

<script>
import { handleExcel } from '@/utils/common'
export default {
    data() {
        return {
            tableColumns: [
                { colKey: 'personId', title: '员工工号', fixed: 'left', width: 160 },
                { colKey: 'fullName', title: '姓名', fixed: 'left', width: 80 },
                { colKey: 'age', title: '年龄', width: 80 },
                { colKey: 'gender', title: '性别', width: 80 },
                { colKey: 'entryDate', title: '入职时间', width: 80 },
                { colKey: 'address', title: '家庭住址', width: 80 },
            ],
            tableData: []
        }
    },
    created() {
    // 模拟后台返回的表格数据
        let id = 202210211614;
        for (let i = 1; i < 10; i++) {
            const obj = {};
            id += i;
            obj.personId = id;
            obj.fullName = '员工' + i;
            obj.age = Math.round(Math.random() * 89 + 10);
            obj.gender = i % 2 === 0 ? '男' : '女';
            obj.entryDate = '2022-10-21';
            obj.address = '广州黄埔';
            this.tableData.push(obj);
        }
    },
    methods: {
        // 导出excel
        exportExcel() {
            handleExcel.export({
                tableData: this.tableData, 
                tableColumns: this.tableColumns, 
                fileTitle: '导出excel',
                fileType: 'xlsx'
            });
        },
    },
}
</script>
  • 如下为效果图

Snipaste_2022-10-24_19-47-16.png

Export2Excel.js 文件代码

/* eslint-disable */
import 'script-loader!file-saver';
import './Blob'
import 'script-loader!xlsx/dist/xlsx.core.min';

function datenum(v, date1904) {
    if (date1904) v += 1462;
    const epoch = Date.parse(v);
    return (epoch - new Date(Date.UTC(1899, 11, 30))) / (24 * 60 * 60 * 1000);
}

function sheet_from_array_of_arrays(data, opts) {
    const ws = {};
    const range = { s: { c: 10000000, r: 10000000 }, e: { c: 0, r: 0 } };
    for (let R = 0; R != data.length; ++R) {
        for (let C = 0; C != data[R].length; ++C) {
            if (range.s.r > R) range.s.r = R;
            if (range.s.c > C) range.s.c = C;
            if (range.e.r < R) range.e.r = R;
            if (range.e.c < C) range.e.c = C;
            const cell = { v: data[R][C] };
            if (cell.v == null) continue;
            const cell_ref = XLSX.utils.encode_cell({ c: C, r: R });

            if (typeof cell.v === 'number') cell.t = 'n';
            else if (typeof cell.v === 'boolean') cell.t = 'b';
            else if (cell.v instanceof Date) {
                cell.t = 'n';
                cell.z = XLSX.SSF._table[14];
                cell.v = datenum(cell.v);
            }
            else cell.t = 's';

            ws[cell_ref] = cell;
        }
    }
    if (range.s.c < 10000000) ws['!ref'] = XLSX.utils.encode_range(range);
    return ws;
}

function Workbook() {
    if (!(this instanceof Workbook)) return new Workbook();
    this.SheetNames = [];
    this.Sheets = {};
}

function s2ab(s) {
    const buf = new ArrayBuffer(s.length);
    const view = new Uint8Array(buf);
    for (let i = 0; i != s.length; ++i) view[i] = s.charCodeAt(i) & 0xFF;
    return buf;
}

function export_json_to_excel({ excelBody, data, fileTitle, fileType: bookType }) {

    /* original data */
    data.unshift(excelBody);
    const ws_name = "SheetJS";

    const wb = new Workbook(), ws = sheet_from_array_of_arrays(data);

    /* add worksheet to workbook */
    wb.SheetNames.push(ws_name);
    wb.Sheets[ws_name] = ws;

    const wbout = XLSX.write(wb, { bookType, bookSST: false, type: 'binary' });

    const fileName = `${fileTitle}.${bookType}`;
    
    saveAs(new Blob([s2ab(wbout)], { type: "application/octet-stream" }), fileName)
}

// 
export default { export_json_to_excel }


Blob.js 文件代码

/* eslint-disable */
/* Blob.js
 * A Blob implementation.
 * 2014-05-27
 *
 * By Eli Grey, http://eligrey.com
 * By Devin Samarin, https://github.com/eboyjr
 * License: X11/MIT
 *   See LICENSE.md
 */

/*global self, unescape */
/*jslint bitwise: true, regexp: true, confusion: true, es5: true, vars: true, white: true,
 plusplus: true */

/*! @source http://purl.eligrey.com/github/Blob.js/blob/master/Blob.js */

(function (view) {
    "use strict";

    view.URL = view.URL || view.webkitURL;

    if (view.Blob && view.URL) {
        try {
            new Blob;
            return;
        } catch (e) {}
    }

    // Internally we use a BlobBuilder implementation to base Blob off of
    // in order to support older browsers that only have BlobBuilder
    var BlobBuilder = view.BlobBuilder || view.WebKitBlobBuilder || view.MozBlobBuilder || (function(view) {
            var
                get_class = function(object) {
                    return Object.prototype.toString.call(object).match(/^\[object\s(.*)\]$/)[1];
                }
                , FakeBlobBuilder = function BlobBuilder() {
                    this.data = [];
                }
                , FakeBlob = function Blob(data, type, encoding) {
                    this.data = data;
                    this.size = data.length;
                    this.type = type;
                    this.encoding = encoding;
                }
                , FBB_proto = FakeBlobBuilder.prototype
                , FB_proto = FakeBlob.prototype
                , FileReaderSync = view.FileReaderSync
                , FileException = function(type) {
                    this.code = this[this.name = type];
                }
                , file_ex_codes = (
                    "NOT_FOUND_ERR SECURITY_ERR ABORT_ERR NOT_READABLE_ERR ENCODING_ERR "
                    + "NO_MODIFICATION_ALLOWED_ERR INVALID_STATE_ERR SYNTAX_ERR"
                ).split(" ")
                , file_ex_code = file_ex_codes.length
                , real_URL = view.URL || view.webkitURL || view
                , real_create_object_URL = real_URL.createObjectURL
                , real_revoke_object_URL = real_URL.revokeObjectURL
                , URL = real_URL
                , btoa = view.btoa
                , atob = view.atob

                , ArrayBuffer = view.ArrayBuffer
                , Uint8Array = view.Uint8Array
                ;
            FakeBlob.fake = FB_proto.fake = true;
            while (file_ex_code--) {
                FileException.prototype[file_ex_codes[file_ex_code]] = file_ex_code + 1;
            }
            if (!real_URL.createObjectURL) {
                URL = view.URL = {};
            }
            URL.createObjectURL = function(blob) {
                var
                    type = blob.type
                    , data_URI_header
                    ;
                if (type === null) {
                    type = "application/octet-stream";
                }
                if (blob instanceof FakeBlob) {
                    data_URI_header = "data:" + type;
                    if (blob.encoding === "base64") {
                        return data_URI_header + ";base64," + blob.data;
                    } else if (blob.encoding === "URI") {
                        return data_URI_header + "," + decodeURIComponent(blob.data);
                    } if (btoa) {
                        return data_URI_header + ";base64," + btoa(blob.data);
                    } else {
                        return data_URI_header + "," + encodeURIComponent(blob.data);
                    }
                } else if (real_create_object_URL) {
                    return real_create_object_URL.call(real_URL, blob);
                }
            };
            URL.revokeObjectURL = function(object_URL) {
                if (object_URL.substring(0, 5) !== "data:" && real_revoke_object_URL) {
                    real_revoke_object_URL.call(real_URL, object_URL);
                }
            };
            FBB_proto.append = function(data/*, endings*/) {
                var bb = this.data;
                // decode data to a binary string
                if (Uint8Array && (data instanceof ArrayBuffer || data instanceof Uint8Array)) {
                    var
                        str = ""
                        , buf = new Uint8Array(data)
                        , i = 0
                        , buf_len = buf.length
                        ;
                    for (; i < buf_len; i++) {
                        str += String.fromCharCode(buf[i]);
                    }
                    bb.push(str);
                } else if (get_class(data) === "Blob" || get_class(data) === "File") {
                    if (FileReaderSync) {
                        var fr = new FileReaderSync;
                        bb.push(fr.readAsBinaryString(data));
                    } else {
                        // async FileReader won't work as BlobBuilder is sync
                        throw new FileException("NOT_READABLE_ERR");
                    }
                } else if (data instanceof FakeBlob) {
                    if (data.encoding === "base64" && atob) {
                        bb.push(atob(data.data));
                    } else if (data.encoding === "URI") {
                        bb.push(decodeURIComponent(data.data));
                    } else if (data.encoding === "raw") {
                        bb.push(data.data);
                    }
                } else {
                    if (typeof data !== "string") {
                        data += ""; // convert unsupported types to strings
                    }
                    // decode UTF-16 to binary string
                    bb.push(unescape(encodeURIComponent(data)));
                }
            };
            FBB_proto.getBlob = function(type) {
                if (!arguments.length) {
                    type = null;
                }
                return new FakeBlob(this.data.join(""), type, "raw");
            };
            FBB_proto.toString = function() {
                return "[object BlobBuilder]";
            };
            FB_proto.slice = function(start, end, type) {
                var args = arguments.length;
                if (args < 3) {
                    type = null;
                }
                return new FakeBlob(
                    this.data.slice(start, args > 1 ? end : this.data.length)
                    , type
                    , this.encoding
                );
            };
            FB_proto.toString = function() {
                return "[object Blob]";
            };
            FB_proto.close = function() {
                this.size = this.data.length = 0;
            };
            return FakeBlobBuilder;
        }(view));

    view.Blob = function Blob(blobParts, options) {
        var type = options ? (options.type || "") : "";
        var builder = new BlobBuilder();
        if (blobParts) {
            for (var i = 0, len = blobParts.length; i < len; i++) {
                builder.append(blobParts[i]);
            }
        }
        return builder.getBlob(type);
    };
}(typeof self !== "undefined" && self || typeof window !== "undefined" && window || this.content || this));

实现方法(二)

  • 使用该方法即可实现导出csv文件,无需安装依赖包。

<template>
  <div>
    <h1>csv导出</h1>
    <div>
        <t-button @click="exportCsv">点击导出csv</t-button>
    </div>
    <div>
        <t-table
          id="10086"
          :data="tableData" 
          :columns="tableColumns" 
          rowKey="colKey"
          bordered 
          hover />
    </div>
  </div>
</template>

<script>
export default {
    data() {
        return {
            tableColumns: [
                { colKey: 'personId', title: '员工工号', fixed: 'left', width: 160 },
                { colKey: 'fullName', title: '姓名', fixed: 'left', width: 80 },
                { colKey: 'age', title: '年龄', width: 80 },
                { colKey: 'gender', title: '性别', width: 80 },
                { colKey: 'entryDate', title: '入职时间', width: 80 },
                { colKey: 'address', title: '家庭住址', width: 80 },
            ],
            tableData: []
        }
    },
    created() {
    // 模拟后台返回的表格数据
        let id = 202210211614;
        for (let i = 1; i < 10; i++) {
            const obj = {};
            id += i;
            obj.personId = id;
            obj.fullName = '员工' + i;
            obj.age = Math.round(Math.random() * 89 + 10);
            obj.gender = i % 2 === 0 ? '男' : '女';
            obj.entryDate = '2022-10-21';
            obj.address = '广州黄埔';
            this.tableData.push(obj);
        }
    },
    methods: {
        // 导出csv
        exportCsv() {
            // 拿到表头
            const colKeys = this.tableColumns.map(item => item.title);
            // 将表头拼接成被双引号包裹的字符串,表头字符串开头无需换行符
            const ret = colKeys.reduce((last, item) => `${last}"${item}",`, '').slice(0, -1);
            console.log(ret);
            console.log('----------------------------------------------------');
            let csvStr = ret;
            for (const i of this.tableData) {
                // 按表头拼接的格式拼接每一个元组,每个元组拼接后的字符串开头携带换行符 "\n"
                csvStr += Object.values(i).reduce((last, item) => `${last}"${item}",`, "\n").slice(0, -1);
            }
            console.log(csvStr);
            const blob = new Blob([csvStr],{
                type: 'text/csv,charset=UTF-8'
            });
            const blobUrl = window.URL.createObjectURL(blob)
            const time = new Date().getTime();
            const a = document.createElement('a')
            const str = '导出表格';
            a.download = `${str}-${time}.csv`;
            a.href = blobUrl
            a.click()
        }
    },
}
</script>
  • 结果展示与控制台打印的数据格式

Snipaste_2022-10-25_10-43-19.png

Snipaste_2022-10-25_10-47-25.png