【问题标题】:How to change the url of numbers in pagination using CakePHP?如何使用 CakePHP 更改分页中数字的 url?
【发布时间】:2012-05-05 06:15:31
【问题描述】:

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

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

我希望号码链接类似于/:categ/:page

我试过了

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

但没有效果。

我错过了什么吗?

【问题讨论】:

    标签: url cakephp pagination


    【解决方案1】:

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

    【讨论】:

      猜你喜欢
      • 2013-05-04
      • 2015-04-04
      • 2011-06-30
      • 2011-07-10
      • 2019-05-02
      • 1970-01-01
      • 1970-01-01
      • 2017-03-10
      • 1970-01-01
      相关资源
      最近更新 更多