使用nodejs将excel数据转为json
2017-01-21 本文已影响0人
初语_
npm install xls-to-json
node_xj = require("xls-to-json");
node_xj({
input: "sample.xls", // input xls
output: "output.json" // output json
sheet: "sheetname" // specific sheetname
}, function(err, result) {
if(err) {
console.error(err);
} else {
console.log(result);
}
}
);