PHP7中文手册2018 带注释 最新chm版
yii当你提交表单后,要显示信息提示用户时,就要用到setFlash,hasFlash,getFlash,在protected/controllers创建TestController.php文件,内容如下:
class TestController extends CController { function actionOk() { Yii::app()->user->setFlash('success', 'Everything went fine!'); $this->redirect('index'); } function actionBad() { Yii::app()->user->setFlash('error', 'Everything went wrong!'); $this->redirect('index'); } function actionIndex() { $this->render('index'); } } 在protected/views/test创建index.php文件: <?php if(Yii::app()->user->hasFlash('success')): <div class="flash-notice"> <?php echo Yii::app()->user->getFlash('success') </div> <?php endif <?php if(Yii::app()->user->hasFlash('error')): <div class="flash-error"> <?php echo Yii::app()->user->getFlash('error') </div> <?php endif
转载请注明:谷谷点程序 » Yii中成功提示信息设置方法