npm install xls-to-json
var node_xj = require("xls-to-json");
node_xj({
input: "input.xls", // input xls
output: "output.json" // output json
}, function(err, result) {
if(err) {
console.error(err);
} else {
console.log(result);
}
});
时间: 2024-10-21 04:00:35