如何显示 has_many_through 关联列表,关联作为列标题,通过:值作为表行中的条目?
我有 3 个模型:
class Jobs
attr_accesor :title
has_many :scores
has_many :factors, through: :scores
end
class Scores
attr_accesor :score
belongs_to :job
belongs_to :factor
end
class Factor
attr_accesor :name
has_many :scores
has_many :jobs, through: :scores
end
我希望能够在 Jobs 索引中显示每个 Job 的一行,每个 Factor 的标题作为列标题,每个 Job 的分数作为单元格中的值。
我希望必须在app/admin/jobs.rb
文件中做这样的事情:
index do |jobs|
column :title
jobs.scores.each do |score|
column(score.factor.name) { |score| score.score }
end
end
并得到这样的输出:
Job | Education | Experience | Leadership | ... |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CEO | 600 | 720 | 580 | ... |
Admin Assistant | 210 | 200 | 150 | ... |
但是 activeadmin 似乎不喜欢这jobs.scores.each
条线,给了我以下错误:
undefined method `scores' for
#<ActiveAdmin::Views::IndexAsTable::IndexTableFor:0x00000104d1dad0>