will_paginate 标签“显示从 1 到 10”
我需要显示一个标签,上面写着显示从 1 到 10 的结果
,因此当我在页面之间移动时,下一页会显示显示从 10 到 20 的结果
,依此类推。
这可以用 will_paginate
实现吗?如果可能的话,您有这方面的示例代码吗?
I need to show a label saying Showing results from 1 to 10
and so as I'm moving between pages the next page will say Showing results from 10 to 20
and so on.
Is this possible with will_paginate
and if it's possible do you have any example code on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
<%= page_entries_info @posts %>
在这里可以满足您的需要。查看此页面获取示例代码。<%= page_entries_info @posts %>
does the trick for you here. Check this page out for example code.