我是守夜人js的入门者。我们正在使用夜表创建端到端框架。因此,对于数据检索部分,我们面临着在Excel中获取行数和列数并解析数据的难题。我们确实研究了exceljs和xlsx模块,但无法获得任何方法。如果有人可以共享代码以获取行数和列数,则将有很大的帮助。
最佳答案
var inboundWorkbook = new Excel.Workbook();
inboundWorkbook.xlsx.readFile(req.file.path).then(function() {
var inboundWorksheet = inboundWorkbook.getWorksheet(1); //or give name of the sheet
console.log('------------- actualRowCount: ' + inboundWorksheet.actualRowCount);
console.log('------------ rowCount: ' + inboundWorksheet.rowCount);
console.log('------------ columnCount: ' + inboundWorksheet. columnCount);
inboundWorksheet.eachRow({ includeEmpty: false }, function(row, rowNumber) {
console.log("Row " + rowNumber + " = " + row.values);
});
});