从All_Users页面链接到用户配置文件,路由

时间:2013-02-24 23:27:18

标签: html ruby-on-rails ruby erb

尝试让我的all_users页面呈现所有拥有帐户的用户的列表 - 然后每个列表项都是该用户的个人资料页面的链接。我有正确呈现用户名的页面,但它们没有指向他们的用户页面。他们的用户页面应该是/ user / username,但链接指向/ username,这显然会出错。我真的非常非常感谢你的帮助。 Stack Overflow真的令人难以置信。

型号:

class User < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :token_authenticatable, :confirmable,
  # :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
     :recoverable, :rememberable, :trackable, :validatable

  # Setup accessible (or protected) attributes for your model
     attr_accessible :email, :password, :password_confirmation, :remember_me, :username
     has_many :items

  validates_presence_of :username
  validates_uniqueness_of :username

  def to_param
    username
  end

end

控制器:

class UsersController < ApplicationController
  def show
    @user = User.find_by_username(params[:id])
  end
  def index
@user = User.find(:all)
  end
end

All_Users查看:

<div class="well">
  <h1>All users</h1>

  <% @user.each do |user| %>
    <%= link_to user.username, public_profile_path(user.username) %><br/>
  <% end %>
</div>

路线:

Scratch::Application.routes.draw do

  resources :items

  devise_for :users
  match 'users/:id' => 'users#show'
  match '/users', :to => 'users#index', :as => "all_users", :via => "get"
  match ':username' => 'users#show', via: :get, as: :public_profile

  root :to => 'static_pages#home'
  get "about" => "static_pages#about"
end

2 个答案:

答案 0 :(得分:1)

match '/username/:name' => 'users#show', via: :get, as: :public_profile

答案 1 :(得分:1)

我倾向于制造一个新的控制器,以便我不会最终超越设计。

像Admin :: Users之类的东西然后在那里我只做基本的脚手架然后将该控制器中的变量映射到Devise用户模型。

这样我可以重新设计前端使用的设计视图和后端使用的管理视图。