Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーが自分のプロファイルを表示できるページを作成するにはどうすればよいですか。
誰かがこの問題を回避/見て/答えを知っていますか?よろしくお願いします。
これは、単純なルーティングの問題ほど工夫された問題ではありません。
ProfileControllerとアクションを作成してからShow、次のようにしますroutes.rb。
ProfileController
Show
routes.rb
match '/profile', :to => "profile#show"
あなたのprofile#showアクションの内部:
def show @profile = current_user end
ビューには、@profileに格納されているユーザーに関する情報が表示されます。