gpt4 book ai didi

ruby-on-rails - rails3,过滤器链停止为 :require_no_authentication rendered or redirected

转载 作者:数据小太阳 更新时间:2023-10-29 07:39:42 27 4
gpt4 key购买 nike

我的设计有问题。当用户已经登录,然后点击登录链接时,没有任何反应,但我的终端输出如下:

Filter chain halted as :require_no_authentication rendered or redirected

这发生在我要Processing by SessionsController#new as HTML

有什么办法,如果有登录用户,我如何告诉设计转到after_sign_in_path

这是我的登录后路径

def after_sign_in_path_for(resource)
if session[:user_return_to]
return_to = session[:user_return_to]
session[:user_return_to] = nil
return_to
else
redirect_path(resource)
end
end

最佳答案

也许您应该考虑在 Controller 之前添加一个过滤器?

prepend_before_filter :require_no_authentication, :only => [:action1, :action2]

关于ruby-on-rails - rails3,过滤器链停止为 :require_no_authentication rendered or redirected,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15524436/

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