gpt4 book ai didi

yii - YII框架中的Flash消息

转载 作者:行者123 更新时间:2023-12-04 22:47:32 26 4
gpt4 key购买 nike

在我发送请求后,我会通过 SET FLASH 将结果公布给用户。当用户发送请求时显示消息的方式是什么?

例如在发送消息表单时:显示 -> 正在发送表单,然后显示一条闪现消息

最佳答案

查看 Yii 框架网站上的 wiki:
http://www.yiiframework.com/wiki/21/how-to-work-with-flash-messages/

在您的 Controller 中,您可以放置​​:

Yii::app()->user->setFlash('success', "Form posted!");

在您看来,您可以通过以下方式回显 Flash 消息:
<?php echo Yii::app()->user->getFlash('success'); ?>

您可以选择使用 hasFlash 方法检查 flash 消息是否存在,因此 View 中的代码如下所示:
<?php if(Yii::app()->user->hasFlash('success')):?>

<?php echo Yii::app()->user->getFlash('success'); ?>

<?php endif; ?>

关于yii - YII框架中的Flash消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18314813/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com