Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 node.js 中寻找 ODS 解析器。目前我正在使用excel-parser 解析 xls 和 xlsx 但它无法解析 ODS 文件。
我寻找了其他 npm 模块,但没有人支持 ODS 文件。
我试过这个,但它给了我错误“不支持的文件类型”。
请帮忙。
您可以尝试使用xlsx
if(typeof require !== 'undefined') XLSX = require('xlsx'); var workbook = XLSX.readFile('test.ods');