ansible/ansible-yaml格式.md
2025-03-09 12:01:03 +08:00

143 lines
3.3 KiB
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<h2><center>Yaml语法格式</center></h2>
------
## 一Yaml介绍
YAML 是 "YAML Ain't a Markup Language"YAML 不是一种标记语言的递归缩写。在开发的这种语言时YAML 的意思其实是:"Yet Another Markup Language"仍是一种标记语言YAML 的语法和其他高级语言类似并且可以简单表达清单、散列表标量等数据形态。它使用空白符号缩进和大量依赖外观的特色特别适合用来表达或编辑数据结构、各种配置文件等YAML 的配置文件后缀为 .ymlrunoob.yml*
### 1. 基本语法
- 大小写敏感
- 使用缩进表示层级关系
- 缩进不允许使用tab只允许空格
- 缩进的空格数不重要,只要相同层级的元素左对齐即可
- '#'表示注释
### 2. 数据类型
- 对象键值对的集合又称为映射mapping/ 哈希hashes/ 字典dictionary
- 数组一组按次序排列的值又称为序列sequence/ 列表list
- 纯量scalars单个的、不可再分的值
### 3. Yaml对象
对象键值对使用冒号结构表示 key: value冒号后面要加一个空格
也可以使用 key:{key1: value1, key2: value2, ...}
```yml
key:
child-key: value
child-key2: value2
```
### 4. Yaml数组
以 - 开头的行表示构成一个数组
```yml
- A
- B
- C
```
YAML 支持多维数组,可以使用行内表示
```yml
key: [value1, value2, ...]
```
数据结构的子成员是一个数组,则可以在该项下面缩进一个空格
```yml
-
- A
- B
- C
```
案例companies 属性是一个数组,每一个数组元素又是由 id、name、price 三个属性构成
```yml
companies:
-
id: 1
name: company1
price: 200W
-
id: 2
name: company2
price: 500W
```
### 5. 复合结构
数组和对象可以构成复合结构
```yml
languages:
- Ruby
- Perl
- Python
websites:
YAML: yaml.org
Ruby: ruby-lang.org
Python: python.org
Perl: use.perl.org
```
转换为 json 为:
```yml
{"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'
}
}
```
### 6. 纯量
纯量是最基本的,不可再分的值,包括:
- 字符串
- 布尔值
- 整数
- 浮点数
- NULL
- 时间
- 日期
```yml
boolean:
- TRUE #true,True都可以
- FALSE #falseFalse都可以
float:
- 3.14
- 6.8523015e+5 #可以使用科学计数法
int:
- 123
- 0b1010_0111_0100_1010_1110 #二进制表示
null:
nodeName: 'node'
parent: ~ #使用~表示null
string:
- 哈哈
- 'Hello world' #可以使用双引号或者单引号包裹特殊字符
- newline
newline2 #字符串可以拆成多行,每一行会被转化成一个空格
date:
- 2018-02-17 #日期必须使用ISO 8601格式即yyyy-MM-dd
datetime:
- 2018-02-17T15:02:31+08:00 #时间使用ISO 8601格式时间和日期之间使用T连接最后使用+代表时区
```