这是一份 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."
参见: 字符串
array1 = [1, 2, 3]
array2 = ["Commas", "are", "delimiter"]
array3 = [8001, 8001, 8002]
array1 = [ "不要混合", "不同的", "类型" ]
array2 = [ [ 1.2, 2.4 ], ["所有", '字符串', """都是相同的""", '''类型'''] ]
array3 = [
"空白", "会被",
"忽略"
]
multiLineString = """
多行基本字符串由
每侧三个引号包围
并允许换行。
"""
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 = '''
原始字符串中的第一个换行符
会被修剪掉。
所有其他空白
都会被保留。
'''
[name]
foo = 1
bar = 2
foo
和 bar
是名为 name
的表中的键。
[table1]
foo = "bar"
[table1.nested_table]
baz = "bat"
[[comments]]
author = "Nate"
text = "很棒的文章!"
[[comments]]
author = "Anonymous"
text = "喜欢!"
{
"comments": [
{
"author": "Nate",
"text": "很棒的文章!"
},
{
"author": "Anonymous",
"text": "喜欢!"
}
]
}
[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" }