我的 has_and_belongs_to_many 在我的显示视图中不起作用,在表单中我可以选择多个选项但它们不会显示在 show.html.erb
我的部分控制器
class Section < ActiveRecord::Base
attr_accessible :about, :name
has_and_belongs_to_many :products
end
我的产品控制器
class Products < ActiveRecord::Base
attr_accessible :price, :name, :section_id
has_and_belongs_to_many :sections
end
在我的节目视图中
<%=h @product.section.name %>
创建和显示产品时如何显示所有选择的部分