ruby-on-rails – Rails太阳黑子:多个模型搜索,但只有某个模型上的某些字段?

在我的Rails应用程序中,我使用太阳黑子来索引几个不同的模型.然后我有一个全局搜索表单,返回混合结果.这很好用:

Sunspot.search(Person,EmailAddress,PhoneNumber,PhysicalAddress) do
  fulltext params[:q]
  paginate :per_page => 10
end

我想在此搜索添加一个额外的模型,比如Project. Project模型有很多索引:

class Project < ActiveRecord::Base
  searchable do
    string :category do
      category.name.downcase if category = self.category
    end

    string :client do
      client.name.downcase if client = self.client
    end

    string :status

    text :tracking_number
    text :description

    integer :category_id,:references => Category
    integer :client_id,:references => Client
    integer :tag_ids,:multiple => true,:references => Tag

    time :created_at,:trie => true
    time :updated_at,:trie => true
    time :received_at,:trie => true
    time :completed_at,:trie => true
  end
end

如何修改我原来的Sunspot.search调用,仅通过tracking_number字段添加搜索项目记录,而不是描述字段?

解决方法

Sunspot.search(Person,PhysicalAddress,Project) do
  fulltext params[:q] do
    fields(:tracking_number,:other_fields_outside_your_project_model)
  end

  paginate :per_page => 10
end

这将在tracking_number字段和您指定的任何其他字段上进行全文搜索,尤其是在Person,PhoneNumber和PhysicalAddress模型中.

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...