我有一个数组或不同的对象,我想按对象分组。例如
=> [#<Graphic id: 3...">, #<Collection id: 1....">, #<Category id:...">, #<Volume id: 15...">]
all.size
=> 4
我试过
all.group_by(Object)
但这不起作用......关于如何在一个数组中分组对象的任何想法?
答案 0 :(得分:19)
你想做这样的事吗?
all.group_by(&:class)
将按类名
对数组中的对象进行分组编辑评论
all.group_by(&:class).each do |key, group|
group.each{|item| puts item}
end
Key是分组元素,obj是密钥的集合,因此这将循环遍历分组中的每个组并列出该组中的对象
你也可以很容易地在分组中进行排序
all.group_by(&:class).each do |key, group|
group.sort_by(&:attribute).each{|item| puts item}
end