我似乎经常遇到这种情况。我需要使用数组中每个对象的属性作为键从数组构建一个Hash。
让我们说我需要一个示例哈希使用由其ID键入的ActiveRecord对象 常用方法:
ary = [collection of ActiveRecord objects]
hash = ary.inject({}) {|hash, obj| hash[obj.id] = obj }
另一种方式:
ary = [collection of ActiveRecord objects]
hash = Hash[*(ary.map {|obj| [obj.id, obj]}).flatten]
梦幻之道: 我可以并且可能自己创建这个,但Ruby或Rails中有什么东西会这样吗?
ary = [collection of ActiveRecord objects]
hash = ary.to_hash &:id
#or at least
hash = ary.to_hash {|obj| obj.id}
答案 0 :(得分:56)
ActiveSupport中已有一种方法可以做到这一点。
['an array', 'of active record', 'objects'].index_by(&:id)
只是为了记录,这是实施:
def index_by
inject({}) do |accum, elem|
accum[yield(elem)] = elem
accum
end
end
哪些可以被重构(如果你迫切需要单行):
def index_by
inject({}) {|hash, elem| hash.merge!(yield(elem) => elem) }
end
答案 1 :(得分:9)
最短的一个?
# 'Region' is a sample class here
# you can put 'self.to_hash' method into any class you like
class Region < ActiveRecord::Base
def self.to_hash
Hash[*all.map{ |x| [x.id, x] }.flatten]
end
end
答案 2 :(得分:7)
万一有人得到普通数组
arr = ["banana", "apple"]
Hash[arr.map.with_index.to_a]
=> {"banana"=>0, "apple"=>1}
答案 3 :(得分:5)
您可以自己将to_hash添加到数组。
class Array
def to_hash(&block)
Hash[*self.map {|e| [block.call(e), e] }.flatten]
end
end
ary = [collection of ActiveRecord objects]
ary.to_hash do |element|
element.id
end
答案 4 :(得分:0)
安装Ruby Facets Gem并使用他们的Array.to_h。