Nodejs 将excel转成json
2018-06-30 本文已影响0人
Fat_Bone
- 先安装一个工具
根据你的excel文件格式,使用相应的工具哦
npm install xlsx-to-json-lc --save
npm install xls-to-json-lc --save
- 实现代码
var exceltojson = require("xls-to-json-lc"); //或者xlsx-to-json-lc,取决于你的文件名。
exceltojson({
input: "pass the input excel file here (.xls format)" //要转换的excel文件,如"/Users/chenyihui/文件/matt/1_2.xlsx"
output: "if you want output to be stored in a file" //输出的json文件,可以不写。如"./yeap.json"
sheet: "sheetname", // 如果有多个表单的话,制定一个表单(excel下面那些标签),可以忽略
lowerCaseHeaders:true //所有英文表头转成大写,可以忽略
}, function(err, result) {
if(err) {
console.error(err);
} else {
console.log(result);
//result will contain the overted json data
}
});