仅当 Rails 中的属性发生更改时才运行回调

Posted

技术标签:

【中文标题】仅当 Rails 中的属性发生更改时才运行回调【英文标题】:Run a callback only if an attribute has changed in Rails 【发布时间】:2014-08-10 11:06:26 【问题描述】:

我的应用中有以下关联:

# Page 
belongs_to :status

我想在pagestatus_id 发生更改时运行回调。

所以,如果page.status_id 从 4 变为 5,我希望能够抓住它。

怎么做?

【问题讨论】:

【参考方案1】:

Rails 5.1+

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.fastruby.io/blog/rails/upgrades/active-record-5-1-api-changes

这是我为自己对 Rails 5.1+ 中 ActiveRecord::Dirty 的更改所做的总结:

ActiveRecord::脏

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 &lt;attribute&gt;_change 现在应该是 &lt;attribute&gt;_change_to_be_saved &lt;attribute&gt;_changed? 现在应该是 will_save_change_to_&lt;attribute&gt;? &lt;attribute&gt;_was 现在应该是 &lt;attribute&gt;_in_database

保存后(重大更改)

修改对象并保存到数据库后,或在after_save 过滤器内:

saved_changes(替换 previous_changessaved_changes? saved_change_to_&lt;attribute&gt; saved_change_to_&lt;attribute&gt;? &lt;attribute&gt;_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_saveafter_save 或the defined ActiveRecord::Callbacks 中的任何一个。

【讨论】:

此解决方案在较新版本中已弃用。 已更新 Rails 5.1+ 信息。【参考方案2】:

attribute_changed? 在 Rails 5.1 中已弃用,现在只需使用 will_save_change_to_attribute?

有关详细信息,请参阅this issue。

【讨论】:

【参考方案3】:

试试这个

after_validation :do_something, if: ->(obj) obj.status_id.present? and obj.status_id_changed?  

def do_something
 # your code
end

参考 - http://apidock.com/rails/ActiveRecord/Dirty

【讨论】:

以上是关于仅当 Rails 中的属性发生更改时才运行回调的主要内容,如果未能解决你的问题,请参考以下文章

仅当页面的某个部分发生更改时才运行角度编译

仅当两个依赖项都更改时才运行效果挂钩

仅当 pr 目标为 master 时才运行 GitHub 操作

仅当同一仓库中的文件添加了新条目时,如何在 github 仓库中运行 CircleCI 作业?

MongoDB - 仅当嵌套数组中的所有条目存在时才更新它们

仅当宽度和高度都更改时才更改图像大小