如何在Rails应用程序中根据当前
用户的节目视图?
我想做点什么
authenticated :user do
root :to => "users#show"
end
但是如何将当前用户的ID传递给此?
谢谢
以下对我有用.
在routes.rb中:
root to: 'users#current_user_home'
在users_controller.rb中:
def current_user_home
redirect_to current_user
end
原文链接:https://www.f2er.com/ruby/267359.html