我已经设计并且可以设置并且在注册后我无法将用户重定向到某个页面。
class RegistrationsController < Devise::RegistrationsController
def after_sign_up_path_for(resource)
"http://google.com"
end
end
然后在我的路线中:
authenticated :user do
root :to => "dashboard#show"
end
现在,当我注册用户时,它只会被定向到仪表板#show。我试图让它去 google.com,但它没有。难道我做错了什么?或者在使用 CanCan 注册后是否有另一种方法可以重定向用户?
谢谢