Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 583 Bytes

utify_no_touching.md

File metadata and controls

31 lines (23 loc) · 583 Bytes

No Touching

常用方法:

no_touching

使用举例:

ActiveRecord::Base.no_touching do
  Project.first.touch # 不会执行 touch
  Message.first.touch # 不会执行 touch
end

Project.no_touching do
  Project.first.touch # 不会执行 touch
  Message.first.touch # 会对 message 执行 touch; 但它 touch: true 的关联对象不会被 touch
end

除上述外,还有方法:

no_touching?

touch
# 优先级大于 Persistence 里的 touch 同名方法;
# 如果 no_touching? => true 则不调用 Persistence 里的 touch 方法。