1、在同一個controller中頁面跳轉(zhuǎn)
$this->render('view頁面',array('參數(shù)'=>'值')); $this->render('news',array('result'=>'123','result1'=>'456')); url重定向???$this->redirect(array('action方法')); $this->redirect(array('getnews','id'=>1,,,,));
相關(guān)教程推薦:yii框架
2、在不同的Controller中頁面跳轉(zhuǎn)
$this->redirect(array('跳轉(zhuǎn)到的controller/跳轉(zhuǎn)到的controller里的action','參數(shù)'=>'值',,,,)); $this->redirect(array('user/getuser','id'=>1));
? 版權(quán)聲明
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載。
THE END