我需要知道每列的行数。在exceljs中,有一种方法可以对列进行计数,但显然不对行进行计数。 https://www.npmjs.com/package/exceljs#columns
答案 0 :(得分:0)
据doc表示其支持
rowCount The total row size of the document. Equal to the row number of the last row that has values.
参考
答案 1 :(得分:0)
是的,我也希望这样做,这肯定会省去麻烦。目前,我的“解决方法”是遍历该列并自己进行计数……
for(counter = 0; counter < xlCol.length; counter++) {
if (xlCol[counter]) {
numRec++;
}
}
看起来并不完全是理想的方式。希望了解更好的方法。