4

我有一个搜索模型,它构造一个基本上是原始 SQL 的字符串。此字符串通过 find_by_sql 调用运行,并在下面的第 5 行返回给控制器(@search.query <--query 是返回 find_by_sql 的结果的方法):

1  def roster_builder
2    authorize! :access_roster_builder, current_coach
3    @search = Search.new(sport: current_coach.primary_sport, conditions: params[:search])
4
5    @athletes = @search.query.page(params[:page]).per_page(8)
6
7    if params[:refresh]
8      render "athletes_refresh" 
9    else
10     render "athletes" if request.format.js?
11   end
12 end

这将返回一个数组,但我收到此错误:

NoMethodError (undefined method `page' for #<Array:0x00000105b7add0>)

所以我发现在哪里插入以下内容可以解决这个问题:

require 'will_paginate/array'

我试过把它放在我的控制器中,而 will_paginate.rb 初始化文件无济于事。我什至对 find_by_sql 结果做了 .to_a ——同样的错误。这里到底有什么问题??我正在使用 will_paginate 版本 3.0.4,所以它是完全最新的。在 github 上,它甚至说要求应该使这项工作正常:https ://github.com/mislav/will_paginate/wiki/Backwards-incompatibility

4

1 回答 1

2

看到这篇文章:https ://github.com/mislav/will_paginate/issues/263

所以对于你的控制器来说,它看起来像这样

def roster_builder
    require 'will_paginate/array'
  authorize! :access_roster_builder, current_coach
  @search = Search.new(sport: current_coach.primary_sport, conditions: params[:search])

  # @athletes = @search.query.page(params[:page]).per_page(8)
    @athletes = @search.query.paginate page: params[:page], per_page: 8

  if params[:refresh]
    render "athletes_refresh" 
  else
    render "athletes" if request.format.js?
  end
end
于 2013-03-21T19:37:11.890 回答