我找不到从这种关系中获取点域 id 的简单方法
pointtype has_and_belongs_to_many pointfields
pointfield has_and_belongs_to_many pointtypes
我执行以下操作:
@pointtypes = current_project.points.map{|p| p.pointtype}.uniq
@pointtypes = @pointtypes - [nil] # tricky... Is this Railsy ?
@pointfield_ids = @pointtypes.map(&:pointfield_ids)
返回
[[16, 17, 18, 23, 24, 25, 26, 27, 28, 29], [16, 17, 32, 33, 34, 35, 36]]
因此
@pointfield_ids.uniq!
不工作,因为有两个子阵列......
我需要的是获得一个具有点域(或对象本身)的唯一 ID 的数组