教程
SheetJS 提供了一个可与 "数组的数组" 和 "JS 对象数组" 配合使用的简单 JS 接口。API 函数是应该与其他 JS API 结合起来解决问题的构建块。
¥SheetJS presents a simple JS interface that works with "Array of Arrays" and "Array of JS Objects". The API functions are building blocks that should be combined with other JS APIs to solve problems.
这些讨论的重点是解决问题的心态。API 详细信息包含在文档的其他部分中。
¥These discussions focus on the problem solving mindset. API details are covered in other parts of the documentation.
数据导出
¥Data Export
"导出教程" 检查数据导出过程。原始数据从端点获取、处理并最终导出到 XLSX 电子表格。
¥The "Export Tutorial" examines the data export process. Raw data is fetched from an endpoint, processed and ultimately exported to a XLSX spreadsheet.
数据导入
¥Data Import
"导入教程" 检查数据导入过程。下载并解析旧文件。底层数据最终以 HTML 表格的形式显示给用户。
¥The "Import Tutorial" examines the data import process. A legacy file is downloaded and parsed. The underlying data is ultimately displayed to the user in a HTML table.
加载表格
¥Loading Sheets
"加载器教程" 探索 SheetJS 集成。基于现有的 CSV 和二进制加载器,开发电子表格加载器并在自然语言查询工作流中测试。
¥The "Loader Tutorial" explores SheetJS integrations. Based on the existing CSV and binary loaders, a spreadsheet loader is developed and tested in a natural language query workflow.