简介
grille-xlsx
是一个轻量级的 Node.js 插件,能够方便地读写和操作 Excel 文件。它基于 SheetJS
库,提供了简单易用,灵活多样的 API 接口。
安装 grille-xlsx
你可以在你的项目中使用 npm 安装 grille-xlsx
。
npm install grille-xlsx --save
导入 grille-xlsx
导入已经安装的 grille-xlsx
这个包。
const grilleXlsx = require("grille-xlsx");
读取 Excel 文件
使用 readFile
方法读取 Excel 文件并获取所有数据:
grilleXlsx.readFile("path/to/my/file.xlsx") .then((data) => { console.log(data); }) .catch((error) => { console.error(error); });
函数调用成功后,返回一个 Promise 对象。你可以用 Promise 的方法 .then()
和 .catch()
分别处理读取成功和失败后的方法。
在读取成功时,返回的是一个包含所有数据的 JSON 对象。
写入 Excel 文件
使用 writeFile
方法写入 Excel 文件。
-- -------------------- ---- ------- ----- ---- - - - ------- -------- ------ --- --------- -------- -- - ------- ------ ------ --- --------- ------ - -- -------------------------- ----------------------- -------- -- - ----------------- ----- ---------------- -- -------------- -- - --------------------- ---
函数调用成功后,你将在你使用的路径下看到你刚刚创建的 Excel 文件。
示例代码
-- -------------------- ---- ------- ----- ---------- - ----------------------- ---- ----- -- ------------------------------------------- ------------ -- - ------------------ -- -------------- -- - --------------------- --- -- -- ----- -- ----- ---- - - - ------- -------- ------ --- --------- -------- -- - ------- ------ ------ --- --------- ------ - -- -------------------------- ----------------------- -------- -- - ----------------- ----- ---------------- -- -------------- -- - --------------------- ---
总结
grille-xlsx
可以轻松地实现读写 Excel 文件数据。它非常好用文档也很清晰。 为前端开发人员提供更多的工具和便利是它的目的。希望这篇文章对你有所帮助。
来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/600671d730d0927023822cb4