繁体   English   中英

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

[英]How to redirect to a specific page on successful sign up using rails devise gem?

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

我希望它为时已晚,您需要覆盖注册控制器的after_sign_up_path_for,在您的app / controller中创建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

最近移动了wiki页面,信息在这里: https//github.com/plataformatec/devise/wiki/How-To : -Redirect- to-a-specific-page-on-successful- sign-in-and-登出

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM