1

在 Rails 3 应用程序中,我正在尝试为使用的模型编写种子(在 db/seeds.rb 中)friendly_id

# /db/seeds.rb
Page.create(:title => "Default page", :content => "Default content of the default page")

当我运行rake db:seed任务失败。以下是运行时的要点--trace

rake aborted!
undefined local variable or method `friendly_id' for #<Class:0x007fa1de992ac8>
/Users/cornelius/.rvm/gems/ruby-1.9.2-p290@usg/gems/activerecord-3.2.5/lib/active_record/dynamic_matchers.rb:50:in `method_missing'
/Users/cornelius/Sites/usg/app/models/page.rb:2:in `<class:Page>'
/Users/cornelius/Sites/usg/app/models/page.rb:1:in `<top (required)>'
...

这是模型:

# /app/models/page.rb
class Page < ActiveRecord::Base
  extend friendly_id
  friendly_id :title, use: :slugged
end

friendly_id用作宝石:

# /Gemfile
gem 'friendly_id'

有什么帮助吗?

4

1 回答 1

2

在您的模型中,您需要正确扩展类,类名是 FriendlyId,而不是friendly_id。

作为 Ruby 和 Rails 中的约定,类名是 CamelCase,文件名是 snake_case。

您的页面模型应为:

class Page < ActiveRecord::Base
  extend FriendlyId
  friendly_id :title, use: :slugged
end
于 2012-06-10T14:45:54.190 回答