如何设置BoostCake分页的限制?

How to set the limit of BoostCake pagination?

我正在与 BoostCake 一起在我的 CakePHP 项目中使用 Twitter Bootstrap,但是我找不到设置分页限制的方法。

谁能告诉我如何设置?

无论您是否使用 BoostCake,您都可以像往常一样设置它。

在你的行动中:

$this->Paginator->settings = array(
    'limit' => 10
);

BoostCake 只会影响视图,不会影响控制器或其他组件。