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"
在您的个人资料#show 操作中:
def show @profile = current_user end
并在视图中显示存储在@profile 中的有关用户的信息。