YII contoller控制器之间跳转的方法redirect

Posted 百鬼夜行

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了YII contoller控制器之间跳转的方法redirect相关的知识,希望对你有一定的参考价值。

   

一个contoller CustomerController里怎么调用另一个controller里的action,Acontoller调用SiteContoller的actionShow($id), url显示上是Customer/index

$control=Yii::app()->runController(‘site/show/id/2‘);



不带参数的actionShow()

$control=Yii::app()->runController(‘site/show‘);


redirect使用方法

$this->redirect(array(‘/site/contact‘,‘id‘=>12));
//http://www.kuitao8.com/testwebap/index.php?r=site/contact&id=12

$this->redirect(array(‘site/contact‘,‘id‘=>‘idv‘,‘name‘=>‘namev‘));
//http://www.kuitao8.com/testwebap/index.php?r=site/contact&id=idv&name=namev

$this->redirect(array(‘site/contact‘,‘v1‘,‘v2‘,‘v3‘));
//http://www.kuitao8.com/testwebap/index.php?r=site/contact&0=v1&1=v2&2=v3

$this->redirect(array(‘site/contact‘,‘v1‘,‘v2‘,‘v3‘,‘#‘=>‘ttt‘));
//带anchor的  http://www.kuitao8.com/testwebap/index.php?r=site/contact&0=v1&1=v2&2=v3#ttt

跳转到一个绝对路径

$this->redirect(‘http://www.baidu.com‘);







以上是关于YII contoller控制器之间跳转的方法redirect的主要内容,如果未能解决你的问题,请参考以下文章

URL原理在视图控制器间跳转的运用

WPF窗体之间跳转的无缝效果

jsp中,通过java后台控制跳转的页面;

Activity之间跳转的转场动画 overridePendingTransition (int enterAnim, int exitAnim)

MarkDown中实现目录页面内跳转

设置http跳转https的几种方法