代码之家  ›  专栏  ›  技术社区  ›  Jason

将分页-如何在内部窗口和外部窗口值之间添加分隔符?

  •  1
  • Jason  · 技术社区  · 14 年前

    我实现了以下自定义链接呈现器类:

    class PaginationListLinkRenderer < WillPaginate::LinkRenderer
    
      def to_html
        links = @options[:page_links] ? windowed_links : []
    
        links.unshift(page_link_or_span(@collection.previous_page, 'previous', @options[:previous_label]))
        links.push(page_link_or_span(@collection.next_page, 'next', @options[:next_label]))
    
        html = links.join(@options[:separator])
        @options[:container] ? @template.content_tag(:ul, html, html_attributes) : html
      end
    
    protected
    
      def windowed_links
        visible_page_numbers.map { |n| page_link_or_span(n, (n == current_page ? 'current' : nil)) }
      end
    
      def page_link_or_span(page, span_class, text = nil)
        text ||= page.to_s
        if page && page != current_page
          page_link(page, text, :class => span_class)
        else
          page_span(page, text, :class => span_class)
        end
      end
    
      def page_link(page, text, attributes = {})
        @template.content_tag(:li, @template.link_to(text, url_for(page)), attributes)
      end
    
      def page_span(page, text, attributes = {})
        @template.content_tag(:li, text, attributes)
      end
    
    end 
    

    这主要是 http://thewebfellas.com/blog/2008/8/3/roll-your-own-pagination-links-with-will_paginate

    不过,有一个问题是,有70页要分页,我设置了:inner_window=>2和:outer_window=>2,分页产生:

    1 2 3 4 5 65 66 67

    如何在页码中添加介于5和65之间的“…”分隔符?

    1 回复  |  直到 13 年前
        1
  •  1
  •   ecoologic    14 年前

    试着使用下面的

    # pagination_list_renderer.rb
    
    protected
    
    def gap_marker; '...'; end
    
    def windowed_links
      prev = nil
    
      visible_page_numbers.inject [] do |links, n|
        # detect gaps:
        links << gap_marker if prev and n > prev + 1
        links << page_link_or_span(n)
        prev = n
        links
      end
    end