我有以下型号:
class Part
belongs_to :note, inverse_of: :part, dependent: :destroy
class Note
has_many :attachments, as: :attachable, dependent: :destroy
has_one :part, inverse_of: :note
end
class Attachment
belongs_to :attachable, polymorphic: true, touch: true
end
当我在附注中添加附件时,我会通过部分
进行def update
@part = current_user.parts.find params[:id]
@part.note.update note_params
…
end
我觉得奇怪的是:
def update
@part = current_user.parts.find params[:id]
@part.note.update note_params
@part.note.attachments.any? # => false
@part.note.attachments.any? # => true
end
为什么第一个调用返回false?因为我在我的视图中需要这个,所以我留下了调用@ part.note.reload,但我无法理解发生了什么。
由于
答案 0 :(得分:4)
出于性能原因缓存关联。使用association(true)
绕过缓存并强制Rails在您完成更改操作后重新获取当前状态:
@part.note(true).attachments.any?