YAML的塊序列表示一系列節點。 每個專案都由一個前導 -
指示符表示。 請注意,YAML中的-
指示符應與具有空格的節點分開。
塊序列的基本表示如下 -
block sequence:
··- one↓
- two : three↓
請觀察以下範例以更好地理解塊序列。
範例1
port: &ports
adapter: postgres
host: localhost
development:
database: myapp_development
<<: *ports
JSON格式的塊序列輸出如下 -
{
"port": {
"adapter": "postgres",
"host": "localhost"
},
"development": {
"database": "myapp_development",
"adapter": "postgres",
"host": "localhost"
}
}