Yaml 歧义;缩进空间和空节点

发布于 2024-09-28 06:58:50 字数 482 浏览 5 评论 0原文

我写道:

a:
-b
-c

解析器将其理解为:

!!map {
  ? !!str "a"
  : !!seq [
      !!str "b",
      !!str "c"
    ]
}

但我的意思是:

!!map {
  ? !!str "a"
  : !!null ""
}
!!seq [
  !!str "b",
  !!str "c"
]

规范说:

“-”、“?”和“:”字符的使用 表示块集合条目是 被人们认为是其中的一部分 缩进。这是在一个 相关部门根据具体情况 作品。

那么这两种解释都是可以接受的吗?如果没有,您能指出规范中阻止它的部分吗?

取决于“相关产品的具体情况”?什么是“相关产品”?

I wrote:

a:
-b
-c

Parser understood it as:

!!map {
  ? !!str "a"
  : !!seq [
      !!str "b",
      !!str "c"
    ]
}

But I meant:

!!map {
  ? !!str "a"
  : !!null ""
}
!!seq [
  !!str "b",
  !!str "c"
]

The specification says:

The “-”, “?” and “:” characters used
to denote block collection entries are
perceived by people to be part of the
indentation. This is handled on a
case-by-case basis by the relevant
productions.

So both interpretations are permissible? If not, can you point out section in specification which prevents it?

Depending on "case-by-case basis by the relevant productions" ? What are "relevant productions"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我喜欢麦丽素 2024-10-05 06:58:50

试试这个:

- a: 
- b
- c
%YAML 1.1
---
!!seq [
    !!map {
        ? !!str "a"
        : !!null "null",
    },
    !!str "b",
    !!str "c",
]
...

Try this:

- a: 
- b
- c
%YAML 1.1
---
!!seq [
    !!map {
        ? !!str "a"
        : !!null "null",
    },
    !!str "b",
    !!str "c",
]
...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文