私の Rails 3 アプリケーションには、次の単純なリレーショナル構造があります。
class Rollout < ActiveRecord::Base
has_many :items, :through => :rollout_items
end
class RolloutItem < ActiveRecord::Base
belongs_to :rollout
belongs_to :item
end
class Item < ActiveRecord::Base
has_many :rollouts, :through => :rollout_items
end
コントローラ:
def new
@rollout = Rollout.new
end
次のフォームで上記のエラーが発生します。
<%= simple_form_for @rollout do |f| %>
<%= f.association :items %>
<% end %>