私は追加しました
# 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
配列のページ付けサポートを取得するために何が欠けているか知っている人はいますか?