如何从模型中收集独特的对象

时间:2012-05-08 19:53:48

标签: ruby-on-rails ruby

我有模特“节目”,其中有很多“表演”,表演有一定的“位置”。 两场或多场演出可能会有相同的位置。

我正在寻找一种方法来获取节目表演所使用的所有位置,但只有一次(如果有三个位置X的表演,我只需要获得X一次)。

编辑:我现在处于这种形式:对象数组[[performance_id:1, location_id:1],[performance_id:2, location_id:1],[performance_id:3, location_id:2]]。如何获得包含[1,2](唯一的location_id)的数组?

3 个答案:

答案 0 :(得分:2)

我在数组中添加了逗号:

[
  [performance_id:1, location_id:1],
  [performance_id:2, location_id:1],
  [performance_id:3, location_id:2]  ].flatten.map {|h| h[:location_id]}.uniq

 => [1, 2] 

答案 1 :(得分:1)

不确定这是否适合您

show.performances.collect(&:location).uniq

答案 2 :(得分:1)

可能类似

Location.joins(:performances).where(:performances => { :show_id => 5 }).group("locations.id")