精选 TOML 常用指令与核心速查备忘单,涵盖高频用法、配置参数与实用技巧。 本备忘单为 TOML (Tom's Obvious, Minimal Language) 格式配置文件语法提供快速速查手册。
TOML 是一种旨在易于读取和编写的最小化配置文件格式,具有极其清晰直观的语义定义。
bool = true
date = 2006-05-27T07:32:00Z
string = "hello"
number = 42
float = 3.14
scientificNotation = 1e+12
# 单行注释示例
# 块级多行注释示例
# 注释行 1
# 注释行 2
# 注释行 3
int1 = +42
int2 = 0
int3 = -21
integerRange = 64
float2 = 3.1415
float4 = 5e+22
float7 = 6.626e-34
bool1 = true
bool2 = false
boolMustBeLowercase = true
date1 = 1989-05-27T07:32:00Z
date2 = 1989-05-26T15:32:00-07:00
date3 = 1989-05-27T07:32:00
date4 = 1989-05-27
time1 = 07:32:00
time2 = 00:32:00.999999
str1 = "I'm a string."
str2 = "You can \"quote\" me."
str3 = "Name\tJos\u00E9\nLoc\tSF."
参见:TOML 字符串
array1 = [1, 2, 3]
array2 = ["Commas", "are", "delimiter"]
array3 = [8001, 8001, 8002]
array1 = [ "Don't mix", "different", "types" ]
array2 = [ [ 1.2, 2.4 ], ["all", 'strings', """are the same""", '''type'''] ]
array3 = [
"Whitespace", "is",
"ignored"
]
multiLineString = """
Multi-line basic strings are surrounded
by three quotation marks on each side
and allow newlines.
"""
path = 'C:\Users\nodejs\templates'
path2 = '\\User\admin$\system32'
quoted = 'Tom "Dubs" Preston-Werner'
regex = '<\i\c*\s*>'
包裹在单引号 ' 内部,不支持转义字符。
re = '''\d{2} apps is t[wo]o many'''
lines = '''
The first newline is
trimmed in raw strings.
All other whitespace
is preserved.
'''
[name]
foo = 1
bar = 2
foo 与 bar 是表 name 下的属性 Key
[table1]
foo = "bar"
[table1.nested_table]
baz = "bat"
[[comments]]
author = "Nate"
text = "Great Article!"
[[comments]]
author = "Anonymous"
text = "Love it!"
↓ 等价的 JSON 结构
{
"comments": [
{
"author": "Nate",
"text": "Great Article!"
},
{
"author": "Anonymous",
"text": "Love It!"
}
]
}
[dog."tater.man"]
type = "pug"
↓ 等价的 JSON 结构
{
"dog": {
"tater.man": {
"type": "pug"
}
}
}
[foo.bar.baz]
bat = "hi"
↓ 等价的 JSON 结构
{
"foo": {
"bar": {
"baz": {
"bat": "hi"
}
}
}
}
[a.b.c] # 推荐的最佳写法规范
[ d.e.f ] # 等价于 [d.e.f]
[ g . h .i ] # 等价于 [g.h.i]
[ j . "ʞ" .'l' ] # 等价于 [j."ʞ".'l']
name = { first = "Tom", last = "Preston-Werner" }
point = { x = 1, y = 2 }
animal = { type.name = "pug" }