Rails 3 中 Kaminari 的部分分页

发布于 2025-01-07 10:14:34 字数 262 浏览 0 评论 0原文

这是关于 Rails 3 的另一个新手问题:我有一个名为“Activity”的模型。在活动的 show.html.erb 页面上,我将属于该活动的评论显示为部分内容:

<%= render :partial => @activity.comments %>

评论的外观位于 _comment.html.erb 文件中。

我的问题:如何对 Kaminari 活动的评论进行分页?

预先非常感谢!

Here is another Newbie question on Rails 3: I have a model called "Activity". On the show.html.erb page of an activity, I show the comments that belong to this activity as a partial:

<%= render :partial => @activity.comments %>

How the comments look like is in the _comment.html.erb file.

My question: How can I paginate the comments for an activity with Kaminari?

Thanks very much in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

茶底世界 2025-01-14 10:14:34

假设 params[:page] 是您评论的页码。您可以执行类似 @activity.comments.page(params[:page]) 的操作。我建议你阅读 https://github.com/amatsuda/kaminari,自述文件几乎包含了你想要的所有内容需要。

Lets assume params[:page] is the page number for your comments. You would do something like @activity.comments.page(params[:page]). I suggest you read https://github.com/amatsuda/kaminari, the README contains pretty much everything you need.

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