亚洲成A人片在线观看网站_成年网站免费视频A在线双飞_日日日日做夜夜夜夜无码_久久夜色撩人精品国产小说

TOML 備忘清單

這是 TOML 格式配置文件語法的快速參考備忘清單。

入門

介紹

是一種最小的配置文件格式,由于明顯的語義而易于閱讀。

  • (toml.io)
  • (learnxinyminutes.com)
  • (visualstudio.com)

示例

bool = true
date = 2005-05-27T07:32:00Z
string = "hello"
number = 42
float = 3.14
scientificNotation = 1e+12

注釋

# A single line comment example
# block level comment example
# 注釋行 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 = 1988-05-27T07:32:00Z
date2 = 1988-05-26T15:32:00-07:00
date3 = 1988-05-27T07:32:00
date4 = 1988-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."

See: Strings

Table

[owner]
name = "Tom Preston-Werner"
dob = 1978-05-27T07:32:00-08:00

See: Tables

數組

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"
]

TOML 字符串

多行字符串

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.
'''

TOML Tables

基本的

[name]
foo = 1
bar = 2

foobar 是名為name 的表中的鍵

嵌套

[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]          # this is best practice
[ d.e.f ]        # same as [d.e.f]
[ g .  h  .i ]   # same as [g.h.i]
[ j . "?" .'l' ] # same as [j."?".'l']

內聯表

name = { first = "Tom", last = "Preston-Werner" }
point = { x = 1, y = 2 }
animal = { type.name = "pug" }

另見