mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
All 181 docs markdown files translated into 20 languages (apps/docs/<locale>/**). Companion to the i18n code PR; admin-merged because the file count exceeds GitHub's per-PR CI trigger limit. Validated by pnpm i18n:check (all surfaces, 0 stale/missing) and a clean all-locale docs build.
1.7 KiB
1.7 KiB
description, i18n_source_hash, i18n_provenance, i18n_output_hash
| description | i18n_source_hash | i18n_provenance | i18n_output_hash |
|---|---|---|---|
| 在 CSV 与 JSON 之间双向转换。 | 978c08ad46d3 | human | 96c06a2986a3 |
CSV to JSON
在 CSV 与 JSON 格式之间双向转换。上传 CSV 或 TSV 文件可得到 JSON 对象数组,或上传 JSON 数组可得到 CSV 文件。
API Endpoint
POST /api/v1/tools/files/csv-json
接受包含 CSV、TSV 或 JSON 文件和 JSON settings 字段的 multipart 表单数据。
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| pretty | boolean | No | true |
以带缩进的方式美化输出 JSON |
Example Request
CSV 转 JSON:
curl -X POST http://localhost:1349/api/v1/tools/files/csv-json \
-H "Authorization: Bearer si_your-api-key" \
-F "file=@users.csv" \
-F 'settings={"pretty": true}'
JSON 转 CSV:
curl -X POST http://localhost:1349/api/v1/tools/files/csv-json \
-H "Authorization: Bearer si_your-api-key" \
-F "file=@users.json" \
-F 'settings={}'
Example Response
{
"jobId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"downloadUrl": "/api/v1/download/a1b2c3d4-e5f6-7890-abcd-ef1234567890/users.json",
"originalSize": 1500,
"processedSize": 2200
}
Notes
- 转换方向根据输入文件扩展名自动检测:
.csv或.tsv生成.json,而.json生成.csv。 pretty参数只影响 JSON 输出。设为false时,输出为紧凑的单行 JSON 字符串。- JSON 输入必须是键一致的对象数组。每个对象成为一行,每个键成为一个列标题。
- 除 CSV 外,还支持 TSV(制表符分隔值)文件。