gpt4 book ai didi

哈希数组的 YAML 缩进

转载 作者:数据小太阳 更新时间:2023-10-29 06:35:44 28 4
gpt4 key购买 nike

我认为缩进在 YAML 中很重要。

我在 irb 中测试了以下内容:

> puts({1=>[1,2,3]}.to_yaml)
---
1:
- 1
- 2
- 3
=> nil

我期待这样的事情:

> puts({1=>[1,2,3]}.to_yaml)
---
1:
- 1
- 2
- 3
=> nil

为什么数组没有缩进?

我在 http://www.yaml.org/YAML_for_ruby.html#collections 找到了这个.

The dash in a sequence counts as indentation, so you can add a sequence inside of a mapping without needing spaces as indentation.

最佳答案

据我所知,这两种方式都是有效的:

require 'yaml'

YAML.load(%q{---
1:
- 1
- 2
- 3
})
# => {1=>[1, 2, 3]}

YAML.load(%q{---
1:
- 1
- 2
- 3
})
# => {1=>[1, 2, 3]}

不清楚为什么您认为连字符前应该有空格。如果您认为这违反了 spec ,请解释如何。

Why isn't there indentation for the array?

连字符前不需要缩进,不加更简单。

关于哈希数组的 YAML 缩进,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17014460/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com