假设我们有以下 YAML 结构:
books:
book_one: "Some name"
book_two: "Some other name"
如果我们像这样加载文件:
f = YAML.load_file("my.yml")
我们可以book_one
像这样访问:f["books"]["book_one"]
。是否有一个内置函数可以接受类似的字符串:books.book_one
并返回相同的值?
编辑:这是我到目前为止所拥有的,它似乎有效:
...
@yfile = YAML.load_file("my.yml")
...
def strings_for(key)
key_components = key.split(".")
container = @yfile
key_components.each_with_index do |kc,idx|
if container && container.kind_of?(Hash) && container.keys.include?(kc)
container = container[kc]
else
container = nil
end
end
container
end