如何在Rails活动管理员索引页面的列表项中显示模型的多个属性项?

时间:2018-09-04 08:46:55

标签: ruby-on-rails ruby-on-rails-4 ruby-on-rails-5 activeadmin

在具有多个属性的模型中,多对多关系在活动管理索引页面中以逗号分隔。

index do
  # other columns goes here
  column('Product Categories') { |p| p. product_categories.pluck(:category_title).join(', ') }
end

现在我要显示所有这些(category_title)

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

由于要在列表中进行打印,因此应使用以下内容:

index do
  # other columns goes here
  column('Product Categories') { |p| p.product_categories.pluck(:category_title).join('<br />').html_safe
end