我正在Will_Paginate::Collection
使用以下代码创建一个对象
@paginatedResults = WillPaginate::Collection.new(1, 5)
@paginatedResults.replace @results[@paginatedResults.offset,
@paginatedResults.per_page]
但是当我尝试使用
<%= will_paginate @paginatedResults %>
我得到一个例外
You have a nil object when you didn't expect it!
The error occurred while evaluating nil.>
我已经将其追溯到对象total_entries
上的Will_Paginate::Collections
属性。财产不见了。我不知道为什么。
有任何想法吗?