我有模特“节目”,其中有很多“表演”,表演有一定的“位置”。 两场或多场演出可能会有相同的位置。
我正在寻找一种方法来获取节目表演所使用的所有位置,但只有一次(如果有三个位置X的表演,我只需要获得X一次)。
编辑:我现在处于这种形式:对象数组[[performance_id:1, location_id:1],[performance_id:2, location_id:1],[performance_id:3, location_id:2]]
。如何获得包含[1,2](唯一的location_id)的数组?
答案 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")