xls-to-json本人感觉不好的地方是有些excel文档打开会报错,这点令人头疼。
不过用起来是相当的简单
var node_xj = require("xls-to-json");
node_xj({
input: "./test.xlsx", // input xls
output: "xx.json", // output json
sheet: "工作表1" // specific sheetname
}, function(err, result) {
if(err) {
console.error(err);
} else {
console.log(result);
}
});