如何限制cakephp分页中显示的按钮数量
How to limit number of buttons dispaly in cakephp pagination
我正在使用 cakephp 2.x 并且我正在尝试自定义 cakephp 默认分页。我想减少分页按钮的数量(cakephp 默认给 8 个按钮)而不改变每页的结果数量。有没有办法做到这一点?非常感谢收到的任何帮助:)
是的,有办法。还有很多其他事情,你可以通过简单地检查 reading the documentation for PaginatorHelper::numbers():
来解决这个问题
Options:
modulus
how many numbers to include on either side of the current page, defaults to 8.
我正在使用 cakephp 2.x 并且我正在尝试自定义 cakephp 默认分页。我想减少分页按钮的数量(cakephp 默认给 8 个按钮)而不改变每页的结果数量。有没有办法做到这一点?非常感谢收到的任何帮助:)
是的,有办法。还有很多其他事情,你可以通过简单地检查 reading the documentation for PaginatorHelper::numbers():
来解决这个问题Options:
modulus
how many numbers to include on either side of the current page, defaults to 8.