Skip to content

格式化与代码

TOML ⇄ JSON 转换器

Convert between TOML and JSON — both directions.

Runs in your browser

编辑注

Understanding · The config language that wanted to be obvious.

本深度章节目前仅有英文版本。上方的转换工具支持您的语言;长篇说明文章尚未翻译。

常见问题

Quick answers.

Does TOML support all JSON data types?

Yes. TOML supports strings, integers, floats, booleans, and arrays, which map directly to JSON types. Note that TOML also has a native Datetime type that JSON does not, which usually converts to an ISO 8601 string.

Is my configuration data secure?

Yes. The conversion logic runs entirely within your browser's memory using JavaScript. No data is sent to a server or stored externally.

Why use TOML instead of JSON for config files?

TOML is designed to be easier for humans to read and write. It allows comments, supports multi-line strings, and relies on a less syntax-heavy structure than JSON's braces and quotes.

Does the converter handle nested tables?

Yes. Nested TOML tables and arrays of tables are correctly converted into nested JSON objects and arrays.

大家也在搜索

相关工具

More in this room.

查看所有 格式化与代码