gpt4 book ai didi

ruby-on-rails - rails/设计 : How can I redirect back and show flash messages when registration fails?

转载 作者:数据小太阳 更新时间:2023-10-29 08:14:06 33 4
gpt4 key购买 nike

设计有问题。我有一个包含 token 的注册网址...类似于:localhost:3000/users/sign_up/df293b00ae137b8b6436d45e622304aedc549072

当注册失败(密码不匹配或其他原因)时,应用程序会重定向到 localhost:3000/users 并显示来自模型的正确闪存消息。

但是我需要应用程序使用 token 重定向回 url。所以我将 redirect_to :back 扔到 Controller 中,这让我返回,但闪现消息没有出现。

如何让页面重定向回来(保留准确的 url)并仍然显示闪现消息。

这是来自设备 Controller 的代码:

 def new
resource = build_resource({})
respond_with resource
end

# POST /resource
def create
build_resource

if resource.save
if resource.active_for_authentication?
set_flash_message :notice, :signed_up if is_navigational_format?
sign_up(resource_name, resource)
respond_with resource, :location => after_sign_up_path_for(resource)
else
set_flash_message :notice, :"signed_up_but_#{resource.inactive_message}" if is_navigational_format?
expire_session_data_after_sign_in!
respond_with resource, :location => after_inactive_sign_up_path_for(resource)
end
else
clean_up_passwords resource
respond_with resource
end
end

任何帮助都会很棒!

最佳答案

你想要的是为设计编写一个自定义的 FailureApp,它用于在用户不可验证(验证失败)时将用户重定向到给定页面。

您可以在 devise wiki 中查看有关谁编写和使用失败应用程序的更多信息:

https://github.com/plataformatec/devise/wiki/How-To:-Redirect-to-a-specific-page-when-the-user-can-not-be-authenticated

关于ruby-on-rails - rails/设计 : How can I redirect back and show flash messages when registration fails?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14166945/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com