gpt4 book ai didi

json - ExcelJS 节点 : is there a method/module for converting xlsx to json in exceljs

转载 作者:行者123 更新时间:2023-12-04 19:46:25 27 4
gpt4 key购买 nike

https://github.com/guyonroche/exceljs

我是 exceljs 的新手,只在 github 上看到 exceljs 的描述我

.e : "Read, manipulate and write spreadsheet data and styles to XLSX and JSON."



我需要转换 workbook进入 JSON object并且在 exceljs 中没有找到类似 csv 的任何方法/模块.

让我知道是否有。

最佳答案

我知道这个问题很老,但我正在为可能与我今天处于同一位置的其他人发布答案。

就在这里。

我正在寻找与您相同的答案,但没有成功。经过一番搜索,我找到了一种方法。

import Exceljs from 'exceljs';

const workbook = new Exceljs.Workbook();
await workbook.xlsx.load(data);
const json = JSON.stringify(workbook.model);
console.log(json); // the json object

我合并了对 this 的回复问题和 Exceljs 读我来弄清楚。我希望这有帮助。

关于json - ExcelJS 节点 : is there a method/module for converting xlsx to json in exceljs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47867234/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com