找不到与Cocoon gem相关的协会

时间:2016-10-12 02:09:54

标签: ruby-on-rails cocoon-gem

我正在使用茧宝石。 我有以下错误关联

找不到名称“任务”的关联。它已被定义了吗?

在模型维度

class Dimension < ActiveRecord::Base
has_many :task
accepts_nested_attributes_for :tasks, :reject_if => :all_blank, :allow_destroy => true 
end

模型任务

class Task < ActiveRecord::Base
 belongs_to :dimension
end

我已尝试过所有内容,审核其他项目但无法找到解决方案

这是github上项目的链接 https://github.com/renatoVB/testcocoon

1 个答案:

答案 0 :(得分:0)

您在Dimension中将关联定义为单数task。它应该被定义为复数:

class Dimension < ActiveRecord::Base
  has_many :tasks
  accepts_nested_attributes_for :tasks, :reject_if => :all_blank,   :allow_destroy => true 
end