【发布时间】:2016-10-12 02:09:54
【问题描述】:
我正在使用茧宝石。 我有以下错误关联
找不到名称“任务”的关联。已经定义了吗?
在模型维度
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
【问题讨论】: