excel-tobe-json2

1.3.3 • Public • Published

安装excel-tobe-json2:(全局安装!)

  • npm install excel-tobe-json2 -g

参数:

参数名 必选 类型 说明
-x string excel路径 或者 谷歌在线表格的https地址
-o string 输出路径
-t string 输出各个语言json包还是一个js文件
-s number 读取表格的第几个sheet数据

使用示例

  // 只使用 -x 参数,指明excel文件路径名。可相对路径亦可绝对。
  D:\raojianbing\anpm\excel-tobe-json2>excel-tobe-json2 -x test/excel.xlsx
  ----
  // 使用 -x 参数,指明excel文件路径名。-o 指明输出的json语言包路径。
  D:\raojianbing\anpm\excel-tobe-json2>excel-tobe-json2 -x test/excel.xlsx -o ../lang
  ----
  // -t (type)参数,可选值有js,json,表明转成js文件,还是多个json。
  D:\raojianbing\anpm\excel-tobe-json2>excel-tobe-json2 -x test/excel.xlsx -t js
  

excel示例,filename字段用来生成文件名(为了兼容,lang字段也可以生成文件名,优先filename。生成.json格式)

excel字段命名语法 https://github.com/diyao/excel-tobe-json

生成的en_lang.json文件如下

{
    "filename": "en_lang",
    "lang": "en",
    "title_image": "body_en_m.jpg",
    "apply_condition_c": [
        {
            "c": "1,condition"
        },
        {
            "c": "2,condition"
        }
    ],
    "arr_index": [
        "1,test arr",
        "2,test arr"
    ],
    "arr_table_cell": [
        "1,merge table cell",
        {
            "c": {
                "a": [
                    {
                        "b": [
                            "deep"
                        ]
                    }
                ]
            }
        },
        "3,merge table cell",
        "4,arr,push merge table cell"
    ],
    "arr_push": [
        "1,arr push",
        "2, arr push"
    ]
}

基于 https://github.com/diyao/excel-tobe-json

Package Sidebar

Install

npm i excel-tobe-json2

Weekly Downloads

2

Version

1.3.3

License

MIT

Unpacked Size

35.8 kB

Total Files

20

Last publish

Collaborators

  • diyao
  • duzhanneng