要了解序列樣式,了解集合很重要。集合和序列樣式的概念並行工作。YAML中的集合用適當的序列樣式表示。如果要引用標記的正確順序,請始終引用集合。YAML中的集合由數組中表示的從零開始的順序整數索引。序列樣式的焦點從集合開始。
Example
讓我們把宇宙中行星的數目看作一個序列,可以作爲一個集合來創建。下面的代碼演示如何表示宇宙中行星的序列樣式;
# Ordered sequence of nodes in YAML STRUCTURE Block style: !!seq - Mercury # Rotates - no light/dark sides. - Venus # Deadliest. Aptly named. - Earth # Mostly dirt. - Mars # Seems empty. - Jupiter # The king. - Saturn # Pretty. - Uranus # Where the sun hardly shines. - Neptune # Boring. No rings. - Pluto # You call this a planet? Flow style: !!seq [ Mercury, Venus, Earth, Mars, # Rocks Jupiter, Saturn, Uranus, Neptune, # Gas Pluto ] # Overrated
然後,您可以看到JSON格式的有序序列的以下輸出−