码迷,mamicode.com
首页 > 其他好文 > 详细

yii2.0里的redirect跳转方法

时间:2018-03-02 14:48:38      阅读:581      评论:0      收藏:0      [点我收藏+]

标签:ref   title   出现   tle   post   http   pos   div   body   

在yii2框架里难免会出现跨控制器跳转,调用方法等,这就用到了redirect了,

 

带参数的

 

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

 

不带参数的

 

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

 

redirect使用方法:

 

一般都是控制器层里执行某段代码结束之后跳转到其他控制器的方法里,

 

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

 

$this->redirect(array(‘site/contact‘,‘id‘=>‘idv‘,‘name‘=>‘namev‘));  //带参数?r=site/contact & id=idv & name=namev

 

$this->redirect(array(‘site/contact‘,‘v1‘,‘v2‘,‘v3‘));   //?r=site/contact & 0=v1 & 1=v2 & 2=v3

 

$this->redirect(array(‘site/contact‘,‘v1‘,‘v2‘,‘v3‘,‘#‘=>‘ttt‘));   //带anchor的 ?r=site/contact & 0=v1 & 1=v2 & 2=v3#ttt

 

跳转到绝对路径:

 

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

 

yii2.0里的redirect跳转方法

标签:ref   title   出现   tle   post   http   pos   div   body   

原文地址:https://www.cnblogs.com/iceman-/p/8492385.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!