Rails 如何在创建之前或之后在模型中创建关联?
Rails how create association in the model before or after create?
我正在使用回调创建关联,但创建后没有关联
有人知道如何在模型中关联而不是在控制器中关联吗?
class Open < ActiveRecord::Base
after_create :images_build
def images_build
images.build
true
end
end
如果您尝试创建关联并将其保存到数据库,请执行以下操作:
before_create ->{ images.build }
这将创建与您的新打开记录关联的单个图像记录。
我正在使用回调创建关联,但创建后没有关联
有人知道如何在模型中关联而不是在控制器中关联吗?
class Open < ActiveRecord::Base
after_create :images_build
def images_build
images.build
true
end
end
如果您尝试创建关联并将其保存到数据库,请执行以下操作:
before_create ->{ images.build }
这将创建与您的新打开记录关联的单个图像记录。