.limit和total_entries不使用will_paginate

时间:2015-04-24 00:42:10

标签: ruby-on-rails will-paginate

已经有很多(here),但我似乎无法找到有效的方法。我只想限制返回的帖子数量。我想:

git rm --cached

会起作用,但遗憾的是没有。然后我尝试了:

Post.order("created_at desc").limit(6).page(params[:page]).per_page(3)

但是这给了我一个Post.order("created_at desc").page(params[:page]).per_page(3).total_entries(6) 错误。

0 个答案:

没有答案