0

私の 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 %>

製品を作成して表示するときに、選択したすべてのセクションを表示するにはどうすればよいですか

4

1 に答える 1