鉴于我有这个哈希:
h = { a: 'a',b: 'b',c: { d: 'd',e: 'e'} }
我转换为OpenStruct:
o = OpenStruct.new(h) => #<OpenStruct a="a",b="b",c={:d=>"d",:e=>"e"}> o.a => "a" o.b => "b" o.c => {:d=>"d",:e=>"e"} 2.1.2 :006 > o.c.d NoMethodError: undefined method `d' for {:d=>"d",:e=>"e"}:Hash
我希望所有嵌套键都是方法.所以我可以这样访问d:
o.c.d => "d"
我怎样才能做到这一点?
解决方法
我个人使用recursive-open-struct gem – 然后就像RecursiveOpenStruct.new(< nested_hash>)一样简单
但是为了递归练习,我会告诉你一个新的解决方案:
require 'ostruct' def to_recursive_ostruct(hash) OpenStruct.new(hash.each_with_object({}) do |(key,val),memo| memo[key] = val.is_a?(Hash) ? to_recursive_ostruct(val) : val end) end puts to_recursive_ostruct(a: { b: 1}).a.b # => 1