我的应用中有以下关联:
# Page
belongs_to :status
我希望在status_id
的{{1}}发生变化时随时运行回调。
所以,如果page
从4变为5,我希望能够抓住它。
怎么做?
答案 0 :(得分:128)
class Page < ActiveRecord::Base
before_save :do_something, if: :will_save_change_to_status_id?
private
def do_something
# ...
end
end
更改ActiveRecord :: Dirty的提交位于:https://github.com/rails/rails/commit/16ae3db5a5c6a08383b974ae6c96faac5b4a3c81
以下是有关这些更改的博文:https://www.ombulabs.com/blog/rails/upgrades/active-record-5-1-api-changes.html
以下是我自己对Rails 5.1 +中ActiveRecord :: Dirty的更改所做的总结:
https://api.rubyonrails.org/classes/ActiveRecord/AttributeMethods/Dirty.html
修改对象后,保存到数据库之前,或before_save
过滤器内
changes
现在应为changes_to_save
changed?
现在应为has_changes_to_save?
changed
现在应为changed_attribute_names_to_save
<attribute>_change
现在应为<attribute>_change_to_be_saved
<attribute>_changed?
现在应为will_save_change_to_<attribute>?
<attribute>_was
现在应为<attribute>_in_database
修改对象后,保存到数据库后,或after_save
过滤器内:
saved_changes
(替换previous_changes
)saved_changes?
saved_change_to_<attribute>
saved_change_to_<attribute>?
<attribute>_before_last_save
class Page < ActiveRecord::Base
before_save :do_something, if: :status_id_changed?
private
def do_something
# ...
end
end
这利用了before_save
回调可以根据方法调用的返回值有条件地执行的事实。 status_id_changed?
方法来自ActiveModel::Dirty,它允许我们通过简单地将_changed?
附加到属性名称来检查特定属性是否已更改。
应该调用do_something
方法符合您的需求。它可以是before_save
或after_save
或任何the defined ActiveRecord::Callbacks。
答案 1 :(得分:13)
在Rails 5.1中不推荐attribute_changed?
,现在只使用will_save_change_to_attribute?
。
有关详细信息,请参阅this issue。
答案 2 :(得分:8)
试试这个
after_validation :do_something, if: ->(obj){ obj.status_id.present? and obj.status_id_changed? }
def do_something
# your code
end