使用Rails 2.3.8和friendly_id的關聯。在它的用戶名配置用戶的網址,但沒有模型
人模式:
class Person < ActiveRecord::Base
# Nice URL's in Rails.
def to_param
"#{login.downcase.gsub(/[^[:alnum:]]/,'-')}".gsub(/-{2,}/,'-')
end
end
人民控制器:
class PeopleController < ApplicationController
def show
@person = User.find(params[:id])
if current_user == @person
@shops = @person.shops.paginate(:page => params[:page], :order => order)
else
@shops = @person.shops.by_status('published').paginate(:page => params[:page], :order => order)
end
end
end
用戶模型(剝離):
class User < ActiveRecord::Base
extend ActiveSupport::Memoizable
acts_as_authentic do |c|
c.validate_email_field = false
c.validate_login_field = false
end
attr_accessible :login, :email, :password, :password_confirmation, :name, :location, :website,
:allow_follower, :allow_message, :allow_updates, :allow_newsletter, :avatar, :role, :remember_me
# Returns name or login if name is blank
def full_name
if self.name.blank?
login.strip
else
(self.name || '').strip
end
end
memoize :full_name
# Nice URL's in Rails.
def to_param
"#{login.downcase.gsub(/[^[:alnum:]]/,'-')}".gsub(/-{2,}/,'-')
end
end
在People.rb
和User.rb
的to_param
定義不起作用。
下Users
控制器的所有頁面純粹是爲了用戶的帳戶設置,是私人看法,所以我不需要任何漂亮的網址在裏面。但我創建了一個People
控制器來顯示用戶的公共視圖。
的people
URL目前http://abc.com/people/1
,我希望把它轉化爲http://abc.com/people/login-name-here
,但沒有打破@person = User.find(params[:id])
在people
的控制器,因爲我需要在它執行獅身人面像搜索。
我能做些什麼來實現呢?謝謝。