Rails 4 - 未初始化的常量SessionController

时间:2013-06-28 17:20:09

标签: ruby-on-rails ruby routes

我正在开发一个Rails应用程序,其中我有一个Session控制器,其中包含以下方法:

def destroy
  session[:user_id] = nil
  redirect_to root_path, notice: "Utloggad"
end

在我的路线文件中,我有以下路线:

controller :session do
  get 'login' => :new
  post 'login' => :create
  delete 'logout' => :destroy
end

我的观点如下:

= link_to "Log out", logout_path, method: :delete, :class => "small"

当我按下链接时,我收到以下错误:uninitialized constant SessionController。我怎么解决这个问题?

1 个答案:

答案 0 :(得分:6)

如果没有您的代码,我无法确定,但如果您使用的是设计,则应该是SessionsController而不是SessionController 所以你的代码看起来像

controller :sessions do
  get 'login' => :new
  post 'login' => :create
  delete 'logout' => :destroy
end