1、在同一個Controller中頁面跳轉
$this->render('view页面',array('参数'=>'值')); $this->render('news',array('result'=>'123','result1'=>'456')); url重定向 $this->redirect(array('action方法')); $this->redirect(array('getnews','id'=>1,,,,));
相關教學推薦:yii框架
2、在不同的Controller中頁面跳轉
$this->redirect(array('跳转到的controller/跳转到的controller里的action','参数'=>'值',,,,)); $this->redirect(array('user/getuser','id'=>1));
更多程式相關內容學習,請造訪php中文網程式設計入門欄位!
以上是yii框架怎麼跳頁的詳細內容。更多資訊請關注PHP中文網其他相關文章!