问题:
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
解决WillPaginate::Collection限值错误
本文介绍了解决Rails应用中使用WillPaginate时出现的“undefined method `limit_value'”错误的方法。通过在配置文件夹下创建will_paginate.rb文件并重写Collection类的limit_value方法,可以为分页设置默认限制值。
550

被折叠的 条评论
为什么被折叠?



