YAML 语言教程

它的基本语法规则如下。



大小写敏感
使用缩进表示层级关系
缩进时不允许使用Tab键,只允许使用空格。
缩进的空格数目不重要,只要相同层级的元素左侧对齐即可


表示注释,从这个字符一直到行尾,都会被解析器忽略。



YAML 支持的数据结构有三种。



对象:键值对的集合,又称为映射(mapping)/ 哈希(hashes) / 字典(dictionary)
数组:一组按次序排列的值,又称为序列(sequence) / 列表(list)
纯量(scalars):单个的、不可再分的值

http://www.ruanyifeng.com/blog/2016/07/yaml.html
对象的一组键值对,使用冒号结构表示。



animal: pets
转为 JavaScript 如下。



{ animal: ‘pets’ }
Yaml 也允许另一种写法,将所有键值对写成一个行内对象。



hash: { name: Steve, foo: bar }
转为 JavaScript 如下。



{ hash: { name: ‘Steve’, foo: ‘bar’ } }
三、数组
一组连词线开头的行,构成一个数组。




  • Cat

  • Dog

  • Goldfish
    转为 JavaScript 如下。



[ ‘Cat’, ‘Dog’, ‘Goldfish’ ]
数据结构的子成员是一个数组,则可以在该项下面缩进一个空格。



-



  • Cat

  • Dog

  • Goldfish
    转为 JavaScript 如下。



[ [ ‘Cat’, ‘Dog’, ‘Goldfish’ ] ]
数组也可以采用行内表示法。



animal: [Cat, Dog]
转为 JavaScript 如下。



{ animal: [ ‘Cat’, ‘Dog’ ] }



http://www.bejson.com/validators/yaml_editor/
https://mp.weixin.qq.com/s/O0v4tlGd81I0HBYZQgGV4g
https://mp.weixin.qq.com/s/VuW1NeT7rS7N9VxdFPtteg
https://juejin.im/post/5ee45c5f51882542fc62643f
https://github.com/semojs/semo
https://juejin.im/post/5dff84e051882512290f2fc2
https://www.npmjs.com/package/json-to-graphql-query


Category web