requestAction分页中的问题

时间:2011-04-14 07:51:37

标签: cakephp paging

我正在开发cakephp(版本1.3)中的应用程序,我需要动态 路由。所以要做到这一点,我在config /中调用requestAction方法 routes.php文件

$ routingData =对象:: requestAction(阵列( '控制器'=> '页', '动作'=> 'get_routes'));

Router :: connect('/ pages / blog',array('controller'=>'blogs','action' => '索引'));

渲染得当,但我遇到了分页问题。

原始(请求的)网址是 (HTTP://)本地主机/ pushpanelnew /页/博客

分页链接就像 (http://)localhost / pushpanelnew / pages / get_routes / page:2 for page 2

但我想要分页链接 (HTTP://)本地主机/ pushpanelnew /页/博客/页:2

我也尝试使用这个

$这 - > Paginator->选项(阵列( 'URL'=> $这 - > PARAMS [ 'URL'] [ 'URL']));

但它显示了像

这样的链接

(HTTP://)本地主机/ pushpanelnew /页/ get_routes /页/博客/页:2

分页也不起作用

但我想要像

这样的分页链接

(HTTP://)本地主机/ pushpanelnew /页/博客/页:2

请帮助我,非常紧急。

由于

Timir Maji

1 个答案:

答案 0 :(得分:0)

试试这个。

$this->Paginator->options(array('url'=> array('controller'=>'pages', 'action'=>'blog'));