我有一个与使用 sunspot_solr 相关的问题。我有一个使用这个 gem 执行一些搜索的应用程序。有 5 个型号具有此功能,其中只有 1 个显示错误
@search.results
NoMethodError (undefined method `result=' for nil:NilClass):
app/controllers/financial_dashboards_controller.rb:27:in `index'
这是我的代码:
控制器
@search = Sunspot.search(Purchase) do
fulltext params[:search]
with(:product_owner).equal_to(current_user.id)
facet(:status)
if params[:status].present?
with(:status).equal_to(params[:status])
end
facet(:sell_date)
if params[:sell_date].present?
with(:sell_date).equal_to(params[:sell_date])
end
order_by(:sell_date, :desc)
end
#line 27
@sales = @search.results.paginate(:page => params[:page], :per_page => 5)
型号(购买):
searchable do
text :product_name
text :product_short_description
integer :product_owner
string :status
string :sell_date
end
def product_name
product.name
end
def product_short_description
product.short_description
end
def product_owner
product.user.id
end
def sell_date
date.to_s(:year_month)
end
#indicates status of the payment and delivery
def status()
if !self.closed.nil?
I18n.t('purchases.status.finished')
elsif !self.measured.nil?
I18n.t('purchases.status.measured')
elsif !self.accomplished.nil?
I18n.t('purchases.status.delivered')
elsif !self.paid.nil?
I18n.t('purchases.status.paid')
elsif !self.canceled.nil?
I18n.t('purchases.status.canceled')
elsif !self.date.nil?
I18n.t('purchases.status.waiting_payment')
end
end
另一个奇怪的事情是,在我的开发机器上,这段代码运行良好。在使用 nginx 的生产机器上,代码显示此错误。
我检查了 gem 的版本,它们匹配。我试过了
rake sunspot:solr:reindex RAILS_ENV=production
重新索引。我试过了
rake sunspot:solr:stop RAILS_ENV=production
rake sunspot:solr:start RAILS_ENV=production
重新启动搜索服务器。甚至尝试删除 solr/ 文件夹并让启动脚本再次复制它。
为什么其他模型可以完美运行?任何想法如何解决这个问题?
谢谢