4

在 Rails 中,我如何做一个链接到当前用户的用户显示页面。基本上我想要一个链接到帐户页面。

我试过了,但我明白了。

路由错误没有路由匹配 {:action=>"show", :controller=>"users"}

路由.rb

LootApp::Application.routes.draw do
  get "password_resets/new"
  get "sessions/new"
  get "static_pages/home"
  get "static_pages/help"

  resources :sessions
  resources :password_resets
  resources :email_activations

  resources :users do
    collection do 
      get :accept_invitation
    end 
  end

  root to: 'static_pages#home'
  match "sign_up",      to: "users#new"
  match '/help',        to: 'static_pages#help'
  match '/log_in',      to: 'sessions#new'
  match '/log_out',     to: 'sessions#destroy'

应用程序.html.haml

      - if current_user 
        = link_to "log out", log_out_path
        - if current_user.admin?
          # your admin
        - else
          = link_to "My account", user_path
      - else
        = link_to "log in", log_in_path

用户控制器

class UsersController < ApplicationController
  before_filter :admin_and_user, only: [:destory, :edit, :show]

  def show
    @user = User.find(params[:id]) 
  end

耙路线

              users GET    /users(.:format)                      users#index
                    POST   /users(.:format)                      users#create
           new_user GET    /users/new(.:format)                  users#new
          edit_user GET    /users/:id/edit(.:format)             users#edit
               user GET    /users/:id(.:format)                  users#show
                    PUT    /users/:id(.:format)                  users#update
                    DELETE /users/:id(.:format)                  users#destroy
4

2 回答 2

11

只是

<%= link_to current_user.name, current_user%>
于 2013-06-16T10:40:25.410 回答
5

当前的答案是最好的解决方案,但只是为了详细说明:导致代码错误的问题是您需要指定链接应链接到的用户。因此,user_path您不应该这样做:

= link_to "My account", user_path(current_user)

一个捷径是(如@Muntasim当前的答案所示)

= link_to "My account", current_user
于 2013-06-16T14:48:33.563 回答