如果我的 rails 模型中有before_save
回调,它看起来像
before_save do
self.time_parameter = Time.zone.now.utc
end
时间对象会像方法一样被解析一次scope
吗?还是每次保存模型时都会正确使用当前时间?
如果我的 rails 模型中有before_save
回调,它看起来像
before_save do
self.time_parameter = Time.zone.now.utc
end
时间对象会像方法一样被解析一次scope
吗?还是每次保存模型时都会正确使用当前时间?