0

在我的路线中,我尝试:

authenticated :user do
   root :to => "dashboard#show"
end

root :to => "devise/sessions#new"

但我有一个漂亮的浏览器错误:

Error 310 (net::ERR_TOO_MANY_REDIRECTS)

有任何想法吗?谢谢

4

2 回答 2

0

我的路由文件中有以下代码。我在devise_for我希望用户登录后去的页面下添加用户并生根

devise_for :users

root :to => 'account#index'

resources :devise
于 2013-08-05T10:26:37.257 回答
0

如果要更改 root_path 指向的操作,可以在路由文件中执行以下操作:

  devise_for :users

  authenticated :user do
    root :to => 'pages#home'
  end

  root :to => 'pages#welcome'
于 2013-08-05T21:39:09.983 回答