我遇到了一个奇怪的问题,当更新父级时不会触发子回调......
我有以下模型设置:
class Budget < ActiveRecord::Base
has_many :line_items
accepts_nested_attributes_for :line_items
end
class LineItem < ActiveRecord::Base
belongs_to :budget
before_save :update_totals
private
def update_totals
self.some_field = value
end
end
在我的表单中,我有嵌套的字段(使用fields_for
构建):
= form_for @budget do |f|
= f.text_field :name
= f.fields_for :line_items do |ff|
= ff.text_field :amount
为什么对孩子的update_totals
回调从未被解雇/我该怎么办才能解雇?
答案 0 :(得分:35)
我有同样的问题。当模型未更改时,不会调用before_save
回调。
您正在更新line_items
,而不是budget
,因此rails认为它没有更新,也没有为save
调用。
您需要将before_save
更改为after_validation
,以便即使模型没有更改属性也会调用它。当您在此回调中更改某些属性时,rails会看到您的模型已更改并将调用save
。
答案 1 :(得分:9)
老问题,我知道,但它仍然首先出现在搜索中。我认为这篇文章有一个解决方案:
Rails, nested attributes and before_save callbacks
如果我正确地理解了这篇文章,那么问题(正如@AntonDieterle在他的回答中解释的那样)是因为父母不是“脏”而没有触发子回调。这个arcticle的解决方案是通过在父属性上调用attr_name_will_change!
来“强迫”它变脏,实际上,父属性不会改变。请参阅Rails API 2中的[活动模型脏]。
Anton使用after_validation
代替before_save
的解决方案听起来更简单,但我想把它作为另一种选择。