YAML用法详解
程序员文章站
2022-06-18 16:58:09
...
1. 简介
YAML 语言(发音 /ˈjæməl/ )的设计目标,就是方便人类读写。它实质上是一种通用的数据串行化格式,远比 JSON 格式方便。
1.1 它的基本语法规则如下。
- 大小写敏感
- 使用缩进表示层级关系
- 缩进时不允许使用Tab键,只允许使用空格。
- 缩进的空格数目不重要,只要相同层级的元素左侧对齐即可
-
#
表示注释,从这个字符一直到行尾,都会被解析器忽略。
1.2 YAML 支持的数据结构有三种。
- 对象:键值对的集合,又称为映射(mapping)/ 哈希(hashes) / 字典(dictionary)
- 数组:一组按次序排列的值,又称为序列(sequence) / 列表(list)
- 纯量(scalars):单个的、不可再分的值
2. 对象
2.1 使用冒号结构表示:
animal: pets
# { animal: 'pets' }
2.2 将所有键值对写成一个行内对象:
hash: { name: Steve, foo: bar }
# { hash: { name: 'Steve', foo: 'bar' } }
3. 数组
3.1 一组连词线开头的行,构成一个数组:
- Cat
- Dog
- Goldfish
# [ 'Cat', 'Dog', 'Goldfish' ]
3.2 二维数组:
-
- Cat
- Dog
- Goldfish
# [ [ 'Cat', 'Dog', 'Goldfish' ] ]
3.3 行内表示法
animal: [Cat, Dog]
# { animal: [ 'Cat', 'Dog' ] }
4. 复合结构
对象和数组可以结合使用,形成复合结构。
languages:
- Ruby
- Perl
- Python
websites:
YAML: yaml.org
Ruby: ruby-lang.org
Python: python.org
Perl: use.perl.org
# {
# languages: [ 'Ruby', 'Perl', 'Python' ],
# websites: {
# YAML: 'yaml.org',
# Ruby: 'ruby-lang.org',
# Python: 'python.org',
# Perl: 'use.perl.org'
# }
# }
5. 纯量
纯量是最基本的、不可再分的值。以下数据类型都属于 JavaScript 的纯量。
- 字符串
- 布尔值
- 整数
- 浮点数
- Null
- 时间
- 日期
## 数值直接以字面量的形式表示
number: 12.30
# { number: 12.30 }
## 布尔值用true和false表示
isSet: true
# { isSet: true }
## null用~表示
parent: ~
# { parent: null }
## 时间采用 ISO8601 格式
date: 2001-12-14t21:59:43.10-05:00
#{ date: new Date('2001-12-14t21:59:43.10-05:00') }
## 日期采用复合 iso8601 格式的年、月、日表示
date: 1976-07-31
# { date: new Date('1976-07-31') }
## 使用两个感叹号,强制转换数据类型
e: !!str 123
f: !!str true
# { e: '123', f: 'true' }
6. 字符串
## 字符串默认不使用引号表示
str: 这是一行字符串
# { str: '这是一行字符串' }
## 如果字符串之中包含空格或特殊字符,需要放在引号之中。
str: '内容: 字符串'
# { str: '内容: 字符串' }
## 单引号和双引号都可以使用,双引号不会对特殊字符转义。
s1: '内容\n字符串'
s2: "内容\n字符串"
# { s1: '内容\\n字符串', s2: '内容\n字符串' }