YAML基础

YAML.png

YAML

YAML不是一种标记语言,是一种表示数据序列化的格式。
可以使用 nodeca.github.io/js-yaml/ 来进行学习

基本语法

  • 大小写敏感
  • 使用缩进表示层级关系
  • 缩进不允许使用tab,只允许空格
  • 缩进的空格数不重要,只要相同层级的元素左对齐即可
  • ‘#’表示注释

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
%YAML 1.2 #表示遵循YAML的版本号
--- #表示一个新的文件
my: #对象嵌套
name : nike
age : !!str 10 #使用两个感叹号,强制转换数据类型
score: !!float 13.0
bool : true
children : ~ #~表示null
brithday : 1996-04-20 12:00:00
number : 1.34e+3
interest: #数组
- basketball
- football
friends: #数组对象
- name:ming
age:15
- name:hong
age:14
relations: #对象
father : foo1
monther : foo2
comment: #表示一个字符串
a
b
c
d
comment1 : > #‘>’表示字符串尾部换行
a
b
c
d
comment2: | #‘|’表示每一行尾部都换行
a
b
c
d
father: &father_info #定义指针
name: foo1
age: 40
monther: &monther_info
name: foo2
age: 39
monitor:
father: *father_info #使用指针
monther: *monther_info
... #表示文件结束