1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | classTestControllerextendsCController { functionactionOk() { Yii::app()->user->setFlash('success','Everything went fine!'); $this->redirect('index'); } functionactionBad() { Yii::app()->user->setFlash('error','Everything went wrong!'); $this->redirect('index'); } functionactionIndex() { $this->render('index'); } } |
1 2 3 4 5 6 7 8 9 10 11 | user->hasFlash('success')):?> user->getFlash('success')?> user->hasFlash('error')):?> user->getFlash('error')?> |
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |