當學習任何程式設計語言時,縮排和分離是兩個主要概念。本章詳細討論了與YAML相關的這兩個概念。
YAML不包括任何強制性空格。此外,沒有必要保持一致。有效的YAML縮排如下所示 -
a:
b:
- c
- d
- e
f:
"ghi"
{
或[
開頭。-
符號被視為縮排的一部分。預期塊的範例
請注意以下程式碼,其中顯示了縮排範例 -
--- !clarkevans.com/^invoice
invoice: 34843
date : 2001-01-23
bill-to: &id001
given : Chris
family : Dumars
address:
lines: |
458 Walkman Dr.
Suite #292
city : Royal Oak
state : MI
postal : 48046
ship-to: *id001
product:
- sku : BL394D
quantity : 4
description : Basketball
price : 450.00
- sku : BL4438H
quantity : 1
description : Super Hoop
price : 2392.00
tax : 251.42
total: 4443.52
comments: >
Late afternoon is best.
Backup contact is Nancy
Billsmer @ 338-4338.
字串使用雙引號字串分隔。如果跳脫給定字串中的換行符,則會將其完全刪除並轉換為空格值。
範例
在這個例子中,將動物列表列為資料型別為string
的陣列結構。列出的每個新元素都帶有連字元字首,如字首所述。
-
- Cat
- Dog
- Goldfish
-
- Python
- Lion
- Tiger
另一個解釋YAML中字串表示的例子如下所述。
errors:
messages:
already_confirmed: "was already confirmed, please try signing in"
confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one"
expired: "has expired, please request a new one"
not_found: "not found"
not_locked: "was not locked"
not_saved:
one: "1 error prohibited this %{resource} from being saved:"
other: "%{count} errors prohibited this %{resource} from being saved:"
此範例參照了一組錯誤訊息,使用者只需提及關鍵方面並相應地獲取值即可使用。 這種YAML模式遵循JSON的結構,YAML的新使用者可以理解。