Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的 Rails 项目使用 will_paginate gem,它运行良好。不幸的是,在具有大量页面的分页结果集中,链接部分太宽。代替:
« Previous 1 2 … 5 6 7 8 9 10 11 12 13 … 18 19 Next »
我想展示:
« Previous 1 2 … 5 6 7 8 9 … 18 19 Next »
如何减少正在呈现的页面链接的数量?我查看了 github 上的 will_paginate 文档,但找不到解决方案。
谢谢!萌
使用:inner_window选项:
:inner_window
<%= will_paginate stuff, :inner_window => 2 %>
您可以在此处查看所有选项。