有什么方法可以只显示当前页面链接<<当我在第一页时隐藏上一个链接,当我在最后一页时下一个>> 链接隐藏。
它应该如下
: 1 |下一个>>
在最后一页(因为有4页):<<上一个| 4
任何中心页面的示例:<<上一个| 3 |下一个>>
目前我得到的是:<<上一个| 1 ... 4 |下一个>>
我的代码
<%= will_paginate @blogs, :class=>"pagination_links",:page_links => true, :next_label => "<span>| </span>Next >>",:previous_label => "<< Previous<span> |</span>",:inner_window => 0, :outer_window => 0 %>
生成的html是
<div class="pagination_links">
<span class="previous_page disabled">
<< Previous
<span> |</span>
</span>
<em class="current">1</em>
<span class="gap">…</span>
<a href="/blog?page=4">4</a>
<a class="next_page" href="/blog?page=2" rel="next">
<span>| </span>
Next >>
</a>
</div>
任何解决方案吗?
答案 0 :(得分:0)
使用默认API选项目前无法实现,但will_paginate允许您制作自定义链接渲染器。
为此,请将渲染器键添加到will_paginate函数中,并告诉它要使用的渲染器。
<%= will_paginate @pages, renderer: PaginationLinkRenderer, previous_label:"« Previous |", next_label:"| Next »" %>
并在helpers /或lib /中创建一个名为pagination_link_renderer.rb
的文件并添加以下内容:
class PaginationLinkRenderer < WillPaginate::ActionView::LinkRenderer
protected
def page_number(page)
if page == current_page
page
end
end
def previous_or_next_page(page, text, classname)
if page
link(text, page, class: classname)
end
end
end
答案 1 :(得分:0)
我使用css实现了这个目标
.current {
display: inline-block;
font-size: 12px;
text-decoration: none;
color: #000000;
}
.gap{
display : none !important;
}
.pagination_links a{
display:none;
}
.next_page,.previous_page{
display:inline-block !important;
color: #3343A0;
}
.pagination_links{
text-align: center;
}
.previous_page.disabled, .next_page.disabled{
display: none !important;
}
.pagination_links a{
text-decoration: none;
}
.pagination_links a:hover{
text-decoration: underline;
}
.pagination_links span{
text-decoration: none;
display: inline-block;
color: #000000;
}