我正在使用friendly_id gem。我也有嵌套的路线:
# config/routes.rb
map.resources :users do |user|
user.resources :events
end
所以我有/users/nfm/events/birthday-2009
等网址。
在我的模型中,我希望事件标题的范围限定为用户名,这样nfm
和mrmagoo
都可以包含事件birthday-2009
,而不会被标记。
# app/models/event.rb
def Event < ActiveRecord::Base
has_friendly_id :title, :use_slug => true, :scope => :user
belongs_to :user
...
end
我也在我的用户模型中使用has_friendly_id :username
。
但是,在我的控制器中,我只是提取与登录用户相关的事件(current_user):
def EventsController < ApplicationController
def show
@event = current_user.events.find(params[:id])
end
...
end
这不起作用;我收到错误ActiveRecord::RecordNotFound; expected scope but got none
。
# This works
@event = current_user.events.find(params[:id], :scope => 'nfm')
# This doesn't work, even though User has_friendly_id, so current_user.to_param _should_ return "nfm"
@event = current_user.events.find(params[:id], :scope => current_user)
# But this does work!
@event = current_user.events.find(params[:id], :scope => current_user.to_param)
SO ,为什么我需要明确指定:scope,如果我将它限制为current_user.events呢?为什么需要显式调用current_user.to_param?我可以覆盖这个吗?
答案 0 :(得分:4)
我在friendly_id 2.2.7中遇到了完全相同的问题但是当我在Rails 2.3.5应用程序中更新为friendly_id 3.0.4时,一切正常。我测试了你在我的应用程序中提到的所有4个查找调用,但它们都有效。
需要注意的是一些可能会影响您的API更改。我遇到的是:
:strip_diacritics
已替换为:strip_non_ascii
。
我决定改用Stringex的String#to_url
代替normalize_friendly_id
resource.has_better_id?
现在是!resource.friendly_id_status.best?
resource.found_using_numeric_id?
现在是resource.friendly_id_status.numeric?