使用 will_paginate 仅显示单页分页
我使用 will_paginate
作为标准,但当有多个页面要显示时,它仅显示分页控件(<1 2> 等)。通常情况下,这就是我们想要的,但我希望看到分页控件(为了 UI 一致性并解决我正在开发的系统中恼人的 CSS 怪癖),即使只有 1 页要显示(显示 <<)。 1>)。
这可能吗?
I'm using will_paginate
as standard, but it only shows the pagination controls (< 1 2 > etc) when there's more than one page to display. Normally, this would be what is wanted, but I want to see the pagination controls (for UI consistency and to get round an annoying CSS quirk in the system I'm working on) even when there's only 1 page to display (showing < 1 >).
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当只有一页时,默认的 will_paginate 助手会返回 nil,因此您可以执行以下操作:
The default will_paginate helper returns
nil
when there is only one page, so you could do something like this: