使用 will_paginate 仅显示单页分页

发布于 2024-08-31 04:24:25 字数 185 浏览 5 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终难遇 2024-09-07 04:24:25

当只有一页时,默认的 will_paginate 助手会返回 nil,因此您可以执行以下操作:

<%= will_paginate(@records) || your_single_page_state_html %>

The default will_paginate helper returns nil when there is only one page, so you could do something like this:

<%= will_paginate(@records) || your_single_page_state_html %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文