我已将 Sunsport Solr 添加到我的 Rails 应用程序中。我要搜索的模型抛出Routing Error
异常,抱怨undefined method 'searchable' for #<Class..........>
. 我遵循了几个不同的设置指令集,它们都提供了相同的信息,我已经完全匹配了。我似乎无法确定问题所在。下面的相关片段。
#dwelling.rb
class Dwelling < ActiveRecord::Base
attr_accessible :street_address, :city, :state, :zip, :nickname
searchable do
text :nickname
end
...
--
#dwellings_controller.rb
class DwellingsController < ApplicationController
before_filter :signed_in_user
def index
@search = Dwelling.search do
fulltext params[:search]
end
@dwellings = @search.results
end
--
#Gemfile
source 'https://rubygems.org'
gem 'rails', '3.2.6'
gem 'bootstrap-sass', '2.0.0'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'sunspot_rails', '~> 1.3.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :development do
gem 'sqlite3', '1.3.5'
gem 'sunspot_solr'
end
有时,如果我刷新几次,key?
就会抛出有关方法的单独错误。下面的完整错误。
NoMethodError in DwellingsController#index
undefined method `key?' for nil:NilClass
我很困惑——有什么想法吗?