我正在尝试登录Rails 4网站上的所有页面。
在ApplicationController中,我添加了before_action :authenticate_user!
,但它根本不做任何事情。我试图将相同的before_action :authenticate_user!
添加到另一个控制器,它工作正常。
我是否需要对ApplicationController执行其他操作,以使所有操作都需要登录(除了注册/登录)?
答案 0 :(得分:17)
以下是我们使用的实际代码:
#app/controllers/application_controller.rb
Class ApplicationController < ActionController::Base
#Actions
before_action :authenticate_user! #-> routes to the login / signup if not authenticated
end
你可能遇到的问题有两个:
-
确保您的其他控制器继承自application_controller
:
#app/controllers/other_controller.rb
Class OtherController < ApplicationController
...
end
-
你以某种方式“跳过”before_action
回调
如果您在任何地方使用skip_before_action
,则需要将其删除。这可能会导致authenticate_user!
方法出现问题。为了解决这个问题,我首先测试没有任何skip_before_action
回调,然后看看是什么让它正常工作
进一步说明 - signin / signup
无关紧要。它们都继承自Devise
控制器;他们只是按要求运行。
答案 1 :(得分:0)
2019年更新
在您的routes.rb
文件中,您可能只提到了如下的 authenticated_user 路径
authenticated :user do
root to: 'home#index', as: :root_app
end
您还应提及 unauthenticated_user 路径以使其正常工作,或者仅提及 root 路径而没有 unauthenticated_user 或 authenticated_user < / p>