读取文件得到Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'F_OK')
Excel表格:^4.3.0
NodeJS :版本14.18.2
重现步骤
const wb = new ExcelJS.Workbook();
const fullPath = path.resolve("excelName.xlsx");
await wb.xlsx.readFile(fullPath );
const buffer = await wb.xlsx.writeBuffer();
1条答案
按热度按时间yc0p9oo01#
对我来说是这样的:
读取excel文件作为数组缓冲区,并使用excel不使用方法readFile,但使用load。