1

如何显示 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>
4

2 回答 2

5

如果我正确理解您的数据,我认为这将起作用。您可以在一条线上完成所有操作,如果这不起作用,请查看地图或收集。您还可以链接每个和映射。确保您使用的是紧凑型,这样您就不会遇到零。下面我假设 score.factor.name 等于每列应该命名的内容和填写的数据。

索引做|工作|
  列:标题
  “教育”栏目 |job|
   job.scores.map { |分数| 如果 score.factor.name == "教育" }.compact 则得分
  结尾
  “经验”栏目做|工作|
   job.scores.map { |分数| score if score.factor.name == "经验" }.compact
  结尾
结尾
于 2013-03-18T22:58:33.900 回答
-1

请参阅此示例以了解 Jobs has_many 分数

ActiveAdmin.register Jobs do 
 index do
 :scores do |i|
   table_for i.scores do
     column do |user|
       user.scores
     end
   end
 end
 end
end

这不是您问题的确切解决方案,但它是您如何做到这一点的概述..!

于 2013-06-19T07:33:06.120 回答