如何从 cakePHP 的控制器内设置分页器页面
我有一个标准的 cakePHP 后端,但我没有使用 cake 分页助手。我现有的前端以“startIndex,numberOfResults”与“page”的形式提供分页参数。如果在控制器操作中我可以解析我的 startIndex、numberOfResults 参数,计算正确的页面,然后执行类似以下操作,那就太好了:
paginate['page'] = $pageNumber;
在 paginate() 调用之前。没有这样的运气。所以我的问题是,如何从控制器内设置分页器页面?作为奖励:cake 在哪里解析名为 param 的页面?它在哪里存储用于分页调用的页面值?
I have a standard cakePHP backend but I'm not using the cake pagination helper. My existing frontend provides pagination params in the form "startIndex, numberOfResults" vs. "page". It would be great if from within the controller action I could just parse my startIndex, numberOfResults params, calc the proper page and then do something like:
paginate['page'] = $pageNumber;
before the paginate() call. No such luck. So my question is, how can I set the paginator page from within the controller? As a bonus: Where is cake parsing the page named param? Where does it store the page value used for the paginate call?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为它是 1.2 应用程序。您应该尝试像这样更改
$this->params['url']['page']
:来源:CakePHP 1.2
Since It's a 1.2 application. You should try changing
$this->params['url']['page']
like this:Source: CakePHP 1.2