如何使用rails devise gem成功注册时重定向到特定页面?

如何使用rails devise gem成功注册时重定向到特定页面?

本页面适合您: http : //github.com/plataformatec/devise/wiki/How-To : -Redirect-to-a-specific- page- on-successful-sign-in

我希望它为时已晚,您需要覆盖注册控制器的after_sign_up_path_for,在您的应用程序/控制器中创建registrations_controller.rb,并覆盖所述操作。

registrations_controller.rb

class RegistrationsController < Devise::RegistrationsController def after_sign_up_path_for(resource) ...path of choice... end end 

尚未测试此代码,因此可能无法仅使用复制和粘贴。 如果您在此处查看,它将为您提供所需的任何其他重定向的操作。

https://github.com/plataformatec/devise/blob/master/app/controllers/devise/registrations_controller.rb