Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
更改时间戳时如何跳过触发before_save回调?
before_save
我试过
def before_save_callback unless created_at_changed? # do somethinh end end
before_save :my_method, :unless => :updated_at_changed?
created_at 不会更改,除非您手动更改它。我建议手动更新 updated_at 然后使用上面的代码。