在yii2框架裡難免會出現跨控制器跳轉,呼叫方法等,這就用到了redirect了,
帶引數的
不帶引數的
redirect使用方法:
一般都是控制器層裡執行某段**結束之後跳轉到其他控制器的方法裡,
$this->redirect(array('/site/contact','id'=>12));//相當於跳到 & 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('');
注:本文由
王智磊(王大寶兒)
yii 2 0 寫入日誌
首先,我們的 web.php 配置檔案中,更改於下 log tracelevel yii debug 3 0,targets class yii log filetarget levels error warning trace 在 levels 中,增加了 trace,使用如下 yii trace...
yii 2 0 寫入日誌
首先,我們的 web.php 配置檔案中,更改於下 log tracelevel yii debug 3 0,targets class yii log filetarget levels error warning trace 在 levels 中,增加了 trace,使用如下 yii trace...
yii2 0框架報錯
在action中執行echo,var dump等方法後沒有中斷,yii1.0中ajax方法返回資料可以直接通過echo獲取,但是yii2.0的response類中增加了對於返回輸出資訊的定義,所以當echo後沒有中斷程式,yii自帶的 就會出錯,不過目前我發現的情況是,只有在返回的資料結構複雜的情況...