1

我已经添加

# config/initializers/will_paginate_array_fix.rb
require 'will_paginate/array'

但似乎仍然没有获得对数组的分页支持,例如:

def index
  @array = (1..100).to_a.paginate(params[:page])
end
# gives TypeError: can't convert Symbol into Integer

它适用于模型,我得到

defined? WillPaginate # => constant
ActiveRecord::Base.respond_to? :paginate # => true
# but:
Array.respond_to? :paginate # => false

任何人都知道我缺少什么来获得数组的分页支持?

4

1 回答 1

5

通过查看 will_paginate/array 中的源代码找到了答案:

def paginate(options = {})
  page     = options[:page] || 1
  per_page = options[:per_page] || WillPaginate.per_page
  total    = options[:total_entries] || self.length

  WillPaginate::Collection.create(page, per_page, total) do |pager|
    pager.replace self[pager.offset, pager.per_page].to_a
  end
end

因此,对于数组,您必须使用 .paginate(而不是 .page),并且必须将其作为散列传递。所以以下工作:

def index
  @array = (1..100).to_a.paginate(page: params[:page])
end
于 2012-06-29T03:46:52.507 回答