1

我想current_user在 Rails 控制台中调用以确保用户已登录。但是,当我编写它时,我收到以下错误:

1.9.3p393 :045 > current_user
NameError: undefined local variable or method `current_user' for main:Object

如何包含允许我使用此方法的适当模块?

4

1 回答 1

1

最好的办法是使用pry gem. 安装后,只需将 line pry 添加到您的控制器,您就可以访问current_user. 您不能current_user以任何其他方式从控制台访问,因为它是基于会话的

于 2013-08-20T00:49:39.827 回答