Kaminari:对范围模型进行分页。控制器/视图责任
我不确定我是否正确地命名了这个问题。 在我的项目中,我有一个带有显示操作的类别控制器
def show
@category = Category.find params[:id]
end
,在我看来,我呈现与此类别相关的所有帖子
@category.posts.each do |post|
link_to post.title, post
,所以现在我想使用 kaminari 添加分页。 我相信我可以将 @category.posts.each
更改为 @category.posts.page(params[:page]).each
,但我也认为这应该由控制者负责。还是我错了?也许一切都好?
谢谢大家。
I'm not sure i've entitled the question correctly.
In my project I have a categories controller with show action
def show
@category = Category.find params[:id]
end
And in my view I render all the posts associated with this category
@category.posts.each do |post|
link_to post.title, post
So now I want to add pagination with kaminari.
I believe I could just change @category.posts.each
to @category.posts.page(params[:page]).each
, but I also think that this should be responsibility of the controller. Or am I wrong? Maybe it's totally fine?
Thanks everyone.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的显示方法应如下所示:
在视图中:
Your show method should look like this:
And in view: