4

我在使用 Elasticsearch、Tire 和 Kaminari 对搜索结果进行分页时遇到问题。

我正在搜索我的应用程序(新闻、绘画、书籍)中的所有模型作为一般站点搜索,因此,在我的站点控制器中需要一个用于轮胎搜索的块,以便进行更细粒度的控制,例如显示超过默认值10 个条目:

class SiteController < ApplicationController
  def search
    # @results = Painting.search(params[:query])
    query = params[:query]
    @results = Tire.search ['news','paintings', 'books'], :page => (params[:page]||1), :per_page=> (params[:per_page] || 3) do
      query { string query }
      size 100
    end
  end
end

在我的搜索结果页面中,我有以下代码:

- if @results
  - @results.results.each do |result|
    = result.title
#pagination
  = paginate @results

在我的所有模型中,我都有正确的映射并包括轮胎:

  # - - - - - - - - - - - - - - - - 
  # Elasticsearch
  # - - - - - - - - - - - - - - - - 
  include Tire::Model::Search
  include Tire::Model::Callbacks

  mapping do
    indexes :id, index: :not_analyzed
    indexes :title, boost: 100
    indexes :slug, boost: 100, as: 'slug'
    indexes :content
    indexes :image, as: 'image.thumb.url'
    indexes :tags, as: 'tags'
    indexes :gallery_name, as: 'gallery.name'
    indexes :created_at, :type => 'date'
  end

我确保我的所有条目都在 Elasticsearch 中正确编入索引。

我遇到的问题是我无法让它工作,最新的错误是:

未定义的方法`current_page'

任何想法将不胜感激。谢谢你。

4

2 回答 2

3

你可以试试这个???当我使用 per_page 选项时,我遇到了类似的问题。所以,我转向了轮胎提供的尺寸选项。我不确定出了什么问题。但是,显式设置和使用from 和 size对我有用......

class SiteController < ApplicationController
  def search
    # @results = Painting.search(params[:query])
    options = { :page => (params[:page] || 1), :size => 100 }
    query = params[:query]
    @results = Tire.search ['news','paintings', 'books'], options do
      query { string query }
      from options[:size].to_i * (options[:page].to_i-1)
    end
  end
end
于 2013-06-06T07:34:05.513 回答
0

Tire 在其库中包含了 Will-paginate gem 的方法,所以我更喜欢那个而不是 Kaminari gem。如果在任何情况下您仍想与 Kaminari 在一起,请收集轮胎搜索的结果。

@results = @results.all.to_hash

paginate @results
于 2013-03-20T07:23:04.523 回答