gpt4 book ai didi

ruby-on-rails - 在routes.rb中设计current_user

转载 作者:行者123 更新时间:2023-12-02 11:47:20 25 4
gpt4 key购买 nike

有什么方法可以访问routes.rb中的当前用户吗?我想要这样的映射:

match /profile => redirect("/profiles/{current_user.name}")

env['warden'] 似乎未设置,因此我无法访问 warden.user.name

最佳答案

不确定这是否可能。但是,您可以使用 Controller :

def profile
if signed_in?
redirect_to user_profile_path(current_user)
else
redirect_to root_url
end
end

关于ruby-on-rails - 在routes.rb中设计current_user,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8636150/

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