ruby-on-rails-3 – 简单形式关联为nil提供了“未定义的方法`kla
发布时间:2020-12-17 03:05:22 所属栏目:百科 来源:网络整理
导读:在我的Rails 3应用程序中,我有以下简单的关系结构: class Rollout ActiveRecord::Base has_many :items,:through = :rollout_itemsendclass RolloutItem ActiveRecord::Base belongs_to :rollout belongs_to :itemendclass Item ActiveRecord::Base has_man
在我的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 %> 解决方法
Rollout和RolloutItem之间缺少关系:
class Rollout < ActiveRecord::Base has_many :rollout_items # This. has_many :items,:through => :rollout_items end Item也是如此. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |