How to read and process Open Document Spreadsheet (*.ods) files with javascript?
问题 I am able to read and process *.xlsx files using an input element of type file and the library exceljs. Also see example code below. Unfortunately, exceljs does not seem to support open document spreadsheet files *.ods. (The worksheet is undefined). => How can I read and process *.ods files with javascript? https://github.com/exceljs/exceljs https://github.com/exceljs/exceljs/issues/716 static async readFile(file){ await this.__initializeExcel(); const workbook = new Excel.Workbook(); await