论坛首页 编程语言技术论坛

Paginate a collection or an array

浏览 4562 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2007-02-05  
def paginate_collection(collection, options = {})
    default_options = {:per_page => 10, :page => 1}
    options = default_options.merge options
    pages = Paginator.new self, collection.size, options[:per_page], options[:page]
    first = pages.current.offset
    last = [first + options[:per_page], collection.size].min
    slice = collection[first...last]
    return [pages, slice]
end

The above snippet can be invoked using
@pages, @users = paginate_collection User.find_custom_query, :page => @params[:page]
   发表时间:2007-02-05  
如果能有一个完整的例子就好了
0 请登录后投票
   发表时间:2007-02-05  
def list_for_one_category
  @category = Category.find(params[:id])
  @article_pages, @articles = paginate_collection @category.articles, :per_page => 10
end
0 请登录后投票
   发表时间:2007-02-06  
我以前有花點時間寫這個東西
Maybe helpful

http://lightyror.thegiive.net/2006/11/pagination-collection.html
0 请登录后投票
论坛首页 编程语言技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics