这是 will_paginate 的使用方式吗?他们文档中的示例没有演示 sql 查询的结果。我在 gem 文件中安装了包含 gem,重新启动没有任何错误。但仍然无法正常工作。
def list_items
@list = Item.find(:all, :select => 'status', :conditions => { :status => ["New"]} )
@list_page = @list.paginate(:per_page => 10)
respond_to do |format|
format.html { render :partial => 'item_list'}
format.js
end
end
NoMethodError (undefined method `paginate' for #<Array:0x97bd3fc>):