想要在 Ruby on rails 中从数据库中检索到满足某些条件的记录后显示该记录。
问题是:
目前我正在使用will_paginate gem 显示记录,而在从数据库中检索到它之后没有检查条件。
如果我检查条件;部分记录不符合条件将被淘汰
编辑
@result=MyRecord.paginate(:per_page => @perpage, :page => params[:page]).all
#process records for conditions, if i eliminate records from @result that much records will be less for pagination
@result #modified sent to view
那么如何为此显示分页。
他们在检索记录后是否有任何替代方法来进行分页???