How to use the parse function from xlsx

Find comprehensive JavaScript xlsx.parse code examples handpicked from public code repositorys.

721
722
723
724
725
726
727
728
729
  res.makeError(400, '请上传 .xls 或 .xlsx文件!');
  if (next)
    return next('route');
}

// let parseData = xlsx.parse(file.path);
let parseData = xlsx.readFile(file.path);
let resultArr = [];
let first = true;
fork icon0
star icon0
watch icon0