问题:
undefined method `limit_value' for #<WillPaginate::Collection..
Soluton:
在 /config/initializers 目录下create will_paginate.rb,内容如下:
if defined?(WillPaginate)
ActiveSupport.on_load :active_record do
module WillPaginate
class Collection < Array
def limit_value
return 5 #or any othe fix value
end
end
end
end
end