如何使用 CakePHP 更改分页中数字的 url?

发布于 2024-12-09 07:40:55 字数 394 浏览 1 评论 0原文

默认情况下,显示分页编号时,URL 看起来像 /controller/action/page:number。在我的应用程序中,我定义了一条路线:

Router::connect('/:categ', array('controller' => 'posts', 'action' => 'index'), array('categ' => '[a-zA-Z]+'));

我希望数字链接类似于 /:categ/:page

我尝试过

Router::connectNamed(array('page'));

但没有效果。

我错过了什么吗?

By default, when displaying pagination numbers, the url looks like /controller/action/page:number. In my application I have defined a route:

Router::connect('/:categ', array('controller' => 'posts', 'action' => 'index'), array('categ' => '[a-zA-Z]+'));

I want the number link to be something like /:categ/:page.

I've tried with

Router::connectNamed(array('page'));

but has no effect.

Am I missing something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紙鸢 2024-12-16 07:40:55

您必须使用带有 url 参数的分页选项:Paginator->options(array('url' => 'some params')); ?>

You must using pagination options with url params:<?php $this->Paginator->options(array('url' => 'some params')); ?>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文