微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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模型中.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐