我accepts_nested_attributes
在我的模型父模型中使用,并且父模型与子模型具有 belongs_to 关联。我正在尝试在我的子模型(after_update
,after_create
)中使用回调。当在 parents_controller 中使用 update_attributes 来更新父记录时。回调after_create
工作正常但after_update
没有触发。
class Parent
accepts_nested_attributes :children
belongs_to :children
end
class Children
before_save :saving
after_update :test
has_many :parents
end
帮我解决这个问题?