「アイテム」を所有するDeviseで作成されたユーザーを持つRailsアプリがあります。これらのアイテムにはショー ビューがあり、それらのショー ビューにもっと SEO に適した URL を持たせたかったのです。実装された Friendly_Id gem の railscast を見ましたが、新しい「アイテム」を作成しようとすると、次のエラーが表示されます。
uninitialized constant Item::FriendlyId
アイテムをクリックしようとすると、次のエラーが表示されます。
undefined method `key?' for nil:NilClass
バンドル インストールを実行しました。gem は gem アセットにありません。
ここに私のアイテムモデルがあります:
1 class Item < ActiveRecord::Base
2 # include Tire::Model::Search
3 # include Tire::Model::Callbacks
4
5 extend FriendlyId
6 friendly_id :title, use: :slugged
7
8 attr_accessible :content, :user_id, :title, :price, :image
9 validates :content, :length => { :maximum => 140 }
10 belongs_to :user
11 delegate :email, :city, :state, to: :user
12
13 def self.search(search)
14 if search
15 where('title ILIKE ? OR content ILIKE ?', "%#{search}%", "%#{search}%")
16 else
17 scoped
18 end
19 end
20
21 def location
22 [city.to_s.camelcase, state.to_s.upcase].reject(&:blank?).join(", ")
23 end
24
25 has_attached_file :image, styles: {
26 thumb: '100x100>',
27 square: '200x200#',
28 medium: '300x300>',
29 large: '600x600#'
30 }
31 end
ここに私のユーザーモデルがあります:
1 class User < ActiveRecord::Base
2 # Include default devise modules. Others available are:
3 # :token_authenticatable, :confirmable,
4 # :lockable, :timeoutable and :omniauthable
5 devise :database_authenticatable, :registerable,
6 :recoverable, :rememberable, :trackable, :validatable
7
8 # Setup accessible (or protected) attributes for your model
9 attr_accessible :email, :password, :password_confirmation, :remember_me, :username, :city, :state, :phone
10 has_many :items
11
12 validates_presence_of :username
13 validates_uniqueness_of :username
14
15 def to_param
16 username
17 end
18
19 after_create :send_welcome_email
20
21 private
22
23 def send_welcome_email
24 UserMailer.welcome_email(self).deliver
25 end
26
27 end