标签: ruby-on-rails ruby-on-rails-4
我有什么方法可以触摸模型,导致updated_at字段更新到当前时间而不实际更改其他字段中的任何内容?
updated_at
答案 0 :(得分:25)
您可以使用touch
touch
model.touch
或
model.touch(:updated_at) #or anyother timestamp attribute
文档here