这是一个应用程序国际化助手,可以帮助你在 json 和 excel 之间完成文件类型转换。
npm install convert-excel-js -g
yarn global add convert-excel-js
将 json 转换为 excel 。
excel [filePath] [fileName]
excel ./filename.json
# excel ./filename.json appText
将 excel 转换为 json 。
json [filePath] [sheetName] [keyColumn] [valueColumn] [fileName]
json ./filename.xlsx 工作表1 A B
# json ./filename.xlsx 工作表1 A B fileName.js
如果你希望生成文件时记录时间,只需在文件名中插入_time_
即可,例如:
将 json 转换为 excel 。
excel [filePath] [fileName]
excel ./filename.json appText._time_.json
将 excel 转换为 json 。
json [filePath] [sheetName] [keyColumn] [valueColumn] [fileName]
json ./filename.xlsx 工作表1 A B fileName._time_.js