Paginate a collection or an array

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]

你可能感兴趣的:(html,.net)