如果我们有一个 .yml 文件,如下所示:
foo:
key1: someValue1
key2: someValue2
我们可以通过以下方式访问其内容:
conf = YAML.load_file("config.yml")
和一个哈希值,如:
conf.fetch('foo')['key1'] #=> "someValue1"
我们如何访问值为 的键'someValue1'
?
或者
最好问:如何访问'foo'
(key1和key2)的密钥?
如果我们有一个 .yml 文件,如下所示:
foo:
key1: someValue1
key2: someValue2
我们可以通过以下方式访问其内容:
conf = YAML.load_file("config.yml")
和一个哈希值,如:
conf.fetch('foo')['key1'] #=> "someValue1"
我们如何访问值为 的键'someValue1'
?
或者
最好问:如何访问'foo'
(key1和key2)的密钥?