用nodejs把xls转为json

2017-05-06 15:58:08
  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);
    }
  });