试图了解 will_paginatepaginate
方法的选项:
:page — REQUIRED, but defaults to 1 if false or nil
:per_page — defaults to CurrentModel.per_page (which is 30 if not overridden)
:total_entries — use only if you manually count total entries
:count — additional options that are passed on to count
:finder — name of the ActiveRecord finder used (default: “find”)
page
, per_page
, 和finder
是直截了当的。
total_entries
并且count
——不理解“仅在您手动计算条目时使用?” 他们是否设想了一个场景,您将运行单独的计数查询,然后将结果paginate
作为选项传递给?你会在什么情况下这样做?
“传递给计数的其他选项” - 哪些选项可用?“传递”到count
方法???