我有一个人模型,我希望对其进行搜索。
class Person < ActiveRecord::Base
searchable do
text :first_name, :last_name, :boost => 2
text :email, :phone
end
end
我已将搜索功能从people_controller中拉出来,因为从长远来看,我希望增加搜索所有模型的范围。这是搜索控制器
class SearchController < ApplicationController
def index
@people = Person.search do
fulltext params[:search]
end
@results = @people.results
end
end
我正在使用UJS在页面上的搜索窗格中呈现搜索结果。此时,search / index.js.erb会附加上述@results变量的调试输出。
$('#search-results').empty();
$('#search-results').append('<%= j debug @results %>');
我尝试的每个查询都会返回以下结果。
--- !ruby/array:Sunspot::Search::PaginatedCollection
internal: []
ivars:
:@current_page: 1
:@per_page: 30
:@total_count: 0
并在rails控制台中显示以下内容。
Parameters: {"utf8"=>"✓", "search"=>"Sabrina", "commit"=>"Go"}
SOLR Request (4.7ms) [ path=select parameters={fq: ["type:Person"], q: "Sabrina", fl: "* score", qf: "first_name_text last_name_text email_text phone_text", defType: "edismax", start: 0, rows: 30} ]
重要的是要注意,此查询是从数据库中的某个人复制/粘贴的。最初我担心错误容忍度不允许甚至是轻微的拼写错误。
这开始变得非常令人沮丧,到目前为止我已经删除并重新安装了最新的JDK,并重新启动了我的机器。在这一点上,我没有看到任何错误或失败的依赖等。有一个可能的例外:当我运行rake sunspot:solr:reindex
我只在终端
Skipping progress bar: for progress reporting, add gem 'progress_bar' to your Gemfile
我的问题是:我做错了什么?
答案 0 :(得分:2)
试试这个
class SearchController < ApplicationController
def index
@people = Sunspot.search(Person) do
fulltext params[:search]
end
@results = @people.results
end
end