【发布时间】:2019-06-04 11:11:03
【问题描述】:
我正在尝试使用应该像社交网络一样运作的设计创建一个 rails 5 应用程序,因此每个用户都有一个个人资料。
更新用户而不是返回配置文件后,服务器重定向到本地主机,然后有一条消息Filter chain halted as :require_no_authentication rendered or redirected,然后才加载用户配置文件。
同样在个人资料上显示一条消息“您已经登录”。
我的目标是清除这些重定向。
- 我尝试在自定义
RegistrationController中更改重定向,但它说重定向太多,所以我无法替换它。 - 我尝试在
routes.rb中为经过身份验证和未经身份验证的用户设置不同的根目录,但这并没有改变行为 - 我试图了解
:require no authentication,但实际上我不太确定我是否正确理解它,它也没有改变任何东西。 -
after_sign_in_path_for设置为用户个人资料
这是服务器输出:
Started PUT "/users" for 127.0.0.1 at 2019-06-04 12:13:37 +0200
Processing by Users::RegistrationsController#update as HTML
Parameters: {"email"=>"asdf@asdf.de", "password"=>"[FILTERED]", "password_confirmat
ion"=>"[FILTERED]", "current_password"=>"[FILTERED]"}, "commit"=>"Update"}
User Load (0.8ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 ORDER BY `users`.`id` ASC LIMIT 1
User Load (0.6ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT
1
(0.3ms) BEGIN
(0.4ms) COMMIT
Redirected to http://localhost:3000/
Completed 302 Found in 295ms (ActiveRecord: 2.1ms)
Started GET "/" for 127.0.0.1 at 2019-06-04 12:13:37 +0200
Processing by Users::SessionsController#new as HTML
User Load (0.7ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 ORDER
BY `users`.`id` ASC LIMIT 1
Redirected to http://localhost:3000/users/1
Filter chain halted as :require_no_authentication rendered or redirected
Completed 302 Found in 15ms (ActiveRecord: 0.7ms)
Started GET "/users/1" for 127.0.0.1 at 2019-06-04 12:13:37 +0200
Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
User Load (0.6ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 ORDER
BY `users`.`id` ASC LIMIT 1
User Load (0.5ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT
1
Rendering users/show.html.erb within layouts/application
Rendered users/show.html.erb within layouts/application (1.1ms)
Rendered shared/_navbar.html.erb (0.7ms)
Completed 200 OK in 162ms (Views: 145.3ms | ActiveRecord: 1.1ms)
另外,为什么用户在更新后再次登录?这是正确的行为吗? 我似乎无法理解重定向到本地主机的发生和干预的位置。任何帮助将不胜感激。
编辑 1
所以,澄清一下。我尝试使用authenticated_root,但随后收到错误消息Couldn't find User without an ID。
devise_scope :user do
authenticated :user do
root to: 'users#show', as: :authenticated_root
end
root to: 'users/sessions#new'
end
我也无法将重定向从 root 更改为用户配置文件。所以RegistrationController 没有改变。我想在更新方法或其他地方说“更新后转到用户配置文件”。
【问题讨论】:
-
所以你在用户更新后重定向到根路径?您是否确保将根路由放在路由文件的底部?您能否发布相关路线以及您可能创建的任何控制器覆盖?
标签: ruby-on-rails ruby devise ruby-on-rails-5