• 把数组内容编码为excel文件二进制内容。 与encode的区别时,对象输入是一个一维数组。

    Parameters

    • columns: string[]

      excel表格列名数组。

    • data: any[]

      数据数组,不能缺少一个数据。

    Returns Bytes

    Example


    import { encodeV2 } from 'excel';

    let value = encodeV2(['a', 'b', 'c'], [1, 2, 3, 4, 5, 6, 7, 2, 3]);
    // 输出内容:
    // a b c
    // 1 2 3
    // 4 5 6
    // 7 2 3