我进行了一些研究,发现这个问题已经在不同的地方被解决过几次了:
Devise with rails 4 authenticated root route not working
Different '/' root path for users depending if they are authenticated (using devise)
Authenticated Route Constraints
Rails Tip #5: Authenticated Root and Dashboard Routes With Devise
我尝试遵循上面链接中给出的示例,并在我的routes.rb
文件中提出了以下解决方案:
root to: 'pages#home'
devise_for :users, :path => 'account', controllers: { registrations: "registrations", confirmations: "confirmations" }
authenticated :user do
root 'calendars#index', as: :authenticated_root
end
此处的目标是将
unauthenticated
用户定向到网站的常规home
页面,而authenticated
用户将转到应用程序内的仪表板,即calendars#index
路线,该路线在我的路线中定义如下:calendars GET /calendars(.:format) calendars#index
但是,当我以用户身份登录并访问
http://localhost:3000/
时,我会继续登陆网站的常规home
页面,而不是应用程序内用户的仪表板。我究竟做错了什么?
最佳答案
更改routes.rb
,以便包装未经身份验证的root
路由,就像经过身份验证的路由一样:
devise_for :users, :path => 'account', controllers: { registrations: "registrations", confirmations: "confirmations" }
authenticated :user do
root 'calendars#index', as: :authenticated_root
end
unauthenticated :user do
root 'pages#home', as: :unauthenticated_root
end
关于ruby-on-rails - Rails 4 + Devise:为经过身份验证的用户设置默认的根路由,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32407598/