2

我正在使用 Rails 4,我正在尝试使用 Sunspot gem 为我的网站实现搜索引擎,但我的搜索始终没有返回任何结果。我已经确认我正在搜索的文本实际上在我的:title:text我的内容模型中的属性中。

我的Content.rb模型:

class Content < ActiveRecord::Base
    searchable do
        string :title
        text :text
    end
    validates :title, presence: true
    validates :text, presence: true
    has_many :links
    validates_associated :links
    accepts_nested_attributes_for :links
end

我的搜索表单位于application.html.haml

  = form_tag search_path, :method => :get do
%p
  = text_field_tag :search, params[:search]
  = submit_tag "Search"

我的contents_controller.rb 控制器:

class ContentsController < ApplicationController
    ...
    def search
        if params[:search]
            @search = Content.search do
                fulltext params[:search]
            end
            @query = params[:search]
            @content = @search.results
        else
            @content = Content.all
        end
    end
    ...
end

我的Gemfile

  ...
  gem 'sunspot_rails'
  gem 'sunspot_solr'
  ...

我在我search.html.haml之后调用的文件:def searchContents Controller

-if @content.empty? || @query == nil
    %p="No results found for: #{@query}"
-elsif !@query.empty?
    %p="Your search results for #{@query}"
-@content.each do |c|
    %h1.content-title=link_to removeHTML(c.title), content_path(c)
    %p.content-text=removeHTML(c.text.split[0..25].join(" ")) + " ..."

上面代码中发生的事情是my@content始终为空。这发生在行之后。我已经验证了这一点,因为如果我删除该行并调用,它会按预期显示我的所有 Content 对象。@content = @search.results@content = Content.all

谁能帮我理解为什么@search.results返回零?

4

1 回答 1

11

似乎您需要使用以下方法重新索引数据:

rake sunspot:solr:reindex

您可以获取Content.all,因为您是通过绕过 solr 进行的,而查询您正在使用搜索引擎,该搜索引擎始终返回空集,因为它没有任何索引。

于 2013-08-14T15:54:59.460 回答