excel-tobe-json2
v1.3.3
Published
excel to json, excel 表格转 json
Downloads
9
Readme
安装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