Activerecord关系touch:true不会更新updated_at属性

时间:2017-11-02 15:07:21

标签: ruby-on-rails

我在缓存方面遇到了一些问题。 我无法使缓存过期,因为" touch:true"在我的协会中没有工作。

class Teaser < ApplicationRecord
 belongs_to :content, inverse_of: :teaser, optional: true, touch: true
end

如果我更新了内容实例,则Teaser updated_at属性不会更改。

我尝试在保存时添加回调,现在它可以正常工作......

为什么?

0 个答案:

没有答案