class Category < ActiveRecord::Base
has_many :posts
accepts_nested_attributes_for :posts
end
是否可以在Category
模型中了解是否创建Post
实例以及保存Category
实例?
答案 0 :(得分:2)
您可以从posts
实例查询category
集合,以查看是否存在任何新记录。如果是这样,他们将在category
时保存。
category.posts.any?(&:new_record?)