yaml 中一个值有多个键
是否可以对同一个值使用不同的键?
[activerecord, activemodel]: 'test'
我期望与此相同的结果:
activerecord: 'test'
activemodel: 'test'
Is it possible to use different keys for the same value?
[activerecord, activemodel]: 'test'
I expect the same result as with this:
activerecord: 'test'
activemodel: 'test'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是行不通的,因为 YAML 允许您指定任何类型的键,因此
具有单个键的映射也是如此,序列
[activerecord, activemodel]
其值为'test'.
相反,您可以使用锚点/别名:
但是,无法将两个键附加到一个键/值对中的单个值。
That doesn't work because YAML allows you to specify keys of any type, so
is a mapping with a single key, the sequence
[activerecord, activemodel]
whose value is'test'
.Instead, you can use an anchor/alias:
However, there's no way of attaching both keys to the single value in one key/value pair.