如何在Rails控制台中重新加载我的数据库?

时间:2010-11-17 21:35:43

标签: ruby-on-rails console

我知道我可以通过输入

来重新加载数据模型
> reload!

但我想知道是否有类似的方法来重新加载数据本身。

谢谢!

1 个答案:

答案 0 :(得分:8)

我不知道你还会在哪里重新加载..固定装置,也许?有时您需要强制对象自行更新,例如

@model_instance = MyModel.first
@model_instance.reload #=> forces the object to reflect the most recent info from the db