美文网首页
yaml配置数组写法

yaml配置数组写法

作者: 阿炸mm | 来源:发表于2019-10-21 14:37 被阅读0次

    一.yaml数组

    texts:

      - "mango"

      - "apple"

      - "banana"

    以上yaml配置文件等同于的js写法

    var texts=["mango","apple","banana"]

    引用该yaml配置的数组:

    const texts = loader('texts.yaml')['texts']

    二.yaml数组中的数组

    -

    - " mango "

    - " apple "

    -" banana "

    等同于js写法:

    [[' mango ',' apple ',' banana ']]

    三.yaml数组采用行内表示法

    animal:[ ' mango ',' apple ',' banana ' ]

    转换成js写法为:

    {animal:[ ' mango ',' apple ',' banana ' ]}

    四.对象和数组结合使用

    friuts:

       - " mango "

       - " apple "

       -" banana "

    vegetables:

       tomatoes:'red'

       potatoes:'yellow'

       green vegetables:'green'

    转成的js写法为:

    {

    friuts:[ ' mango ',' apple ',' banana ' ],

    vegetables:{

       tomatoes:'red'

       potatoes:'yellow'

       green vegetables:'green'

    }

    }

    除此外的其他配置写法可参照:http://www.ruanyifeng.com/blog/2016/07/yaml.html

    相关文章

      网友评论

          本文标题:yaml配置数组写法

          本文链接:https://www.haomeiwen.com/subject/vujmuctx.html