1

accepts_nested_attributes在我的模型父模型中使用,并且父模型与子模型具有 belongs_to 关联。我正在尝试在我的子模型(after_updateafter_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

帮我解决这个问题?

4

0 回答 0