码迷,mamicode.com
首页 > 其他好文 > 详细

YAML块序列

时间:2020-03-06 01:22:08      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:dap   strong   postgre   sequence   key   icon   json   operator   res   

YAML的块序列表示一系列节点。 每个项目都由一个前导 - 指示符表示。 请注意,YAML中的-指示符应与具有空格的节点分开。

块序列的基本表示如下 -

block sequence:
··- one↓
  - two : three↓
YAML

示例

请观察以下示例以更好地理解块序列。

示例1

port: &ports
  adapter:  postgres
  host:     localhost

development:
  database: myapp_development
  <<: *ports
YAML

JSON格式的块序列输出如下 -

{
   "port": {
      "adapter": "postgres",
      "host": "localhost"
   },
   "development": {
      "database": "myapp_development",
      "adapter": "postgres",
      "host": "localhost"
   }
}

YAML块序列

标签:dap   strong   postgre   sequence   key   icon   json   operator   res   

原文地址:https://www.cnblogs.com/borter/p/12424077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!