Files
twenty/packages/twenty-docs/l/zh/user-guide/data-migration/capabilities/file-formats.mdx
T
github-actions[bot] e0d4492013 i18n - docs translations (#17434)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-01-26 09:06:17 +01:00

49 lines
1.5 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: 支持的文件格式
description: 在 Twenty 中用于数据导入的受支持文件格式。
---
## 支持的格式
Twenty 支持三种导入文件格式:
| 格式 | 扩展名 | 备注 |
| ------------- | ----- | ----------- |
| **CSV** | .csv | 推荐,兼容性最佳 |
| **Excel** | .xlsx | 现代 Excel 格式 |
| **Excel(旧版)** | .xls | 旧版 Excel 格式 |
## 文件要求
| 要求 | 值 |
| -------- | ----------------- |
| **编码** | 推荐使用 UTF-8 |
| **记录上限** | 每个文件最多 10,000 条记录 |
| **结构** | 第一行必须包含列标题 |
| **内容** | 每个文件仅包含一种对象类型 |
## CSV 最佳实践
* **分隔符**:使用逗号(`,`)或分号(`;`)
* **文本限定符**:对于包含逗号的文本,请使用双引号(`\"`)
* **行结束符**:支持 WindowsCRLF)或 UnixLF
* **空值**:将单元格留空,不要使用 "NULL" 或 "N/A"
## Excel 最佳实践
从 Excel 导出时:
* 移除公式(仅导出值)
* 删除末尾的空行
* 确保没有合并单元格
* 仅使用第一个工作表
## 大型数据集
对于超过 10,000 条记录的数据集:
* 拆分为多个文件
* 或者使用 [API 导入](/l/zh/user-guide/data-migration/how-tos/import-data-via-api) 以导入无限数量的记录
<Note>对于非常大的迁移(100,000+ 条记录),API 比 CSV 导入明显更快且更可靠。</Note>