Ruby:将散列中的ActiveRecord对象数组分组

时间:2011-03-30 18:33:14

标签: ruby-on-rails ruby

我想将一个ActiveRecord对象数组分组到一个哈希中,该哈希的接口很容易在SQL语句之后查询,如下所示:

SELECT name,value from foo where name IN ('bar', 'other_bar') LIMIT 2;

在那个查询之后,我想要一个我可以去的哈希:

foo[:bar] # output: value1
foo[:other_bar] # output: value2

使用ActiveRecord收集对象的最佳方法是什么,并将它们分组以便我可以使用上面的界面?

4 个答案:

答案 0 :(得分:15)

在Rails 2中

foos = Foo.all :select => "name, value",
               :conditions => ["name in (?)", %w(bar other_bar)],
               :limit => 2

在Rails 3中

foos = Foo.where("name in (?)", %w(bar other_bar)).select("name, value").limit(2)

然后

foo = Hash[foos.map { |f| [f.name.to_sym, f.value] }]

foo = foos.inject({}) { |h, f| h[f.name.to_sym] = f.value; h }

或在Ruby 1.9中

foo = foos.each_with_object({}) { |f, hash| hash[f.name.to_sym] = f.value }

答案 1 :(得分:4)

如果我理解正确的话:

foo = Hash[Foo.find(:all, :limit => 2, :select => "name, value", :conditions => ["name in ('bar', 'other_bar')"]).map { |s| [s.name.intern, s.value] }]

答案 2 :(得分:1)

Hash[result.map { |r| [r[:name].to_sym, r[:value]] } ]

答案 3 :(得分:0)

models.inject({}) {|h,m| h[ m.name.to_sym ] = m.value; h }