dsc6517 2018-04-26 12:22
浏览 38
已采纳

如何检查CakePHP 3中是否存在Flash消息?

In Yii (both version) for flash messages we have methods like: hasFlash for checking if a flash message exists beforehand and getFlash to get the content of a specific flash message...

In Yii 1x I would say something like this (whether in the Controller or in a View):

View:

<?php if(Yii::app()->user->hasFlash('success')): ?>
    <div class="alert alert-success">
        <?=Yii::app()->user->getFlash('success'); ?>
    </div>
<?php endif; ?>

Controller:

if($something->happend()) {
    Yii::app()->user->setFlash('success', 'You\'ve done something wonderful.');
    return $this->redirect('/elsewhere');
}

In CakePHP 3 this seems impossible, since the only thing I can do is to set a Flash message:

$this->Flash->set('Welcome, to the real world.', [
    'element' => 'success',
]);

There are no get or has methods for Flash messages, or anything similar that I could find related to FlashComponent and FlashHelper classes.

The other thing about this Flash messages implementation in CakePHP 3 is the way you render and show them to the visitor; you just say the following in your views/layout:

<?= $this->Flash->render(); ?>

That method will actually do the rendering, checking if a flash exists, whatever... and the thing is I need to check if a Flash message is sent/exists, then to do something else within the layout. Now it seems impossible to me or I am not looking in the right direction.

I would note that this is a very strange and bad implementation of Flash messages in CakePHP 3...

Finally, the question:

How can I check if a Flash message exists, whether in a view or in a controller?

  • 写回答

4条回答 默认 最新

  • duanlaiyin2356 2018-04-26 12:52
    关注

    You can use key while setting the Flash. see below

    $this->Flash->set('Welcome, to the real world.', ['key' => 'alert']);
    

    check by key in render before call

    <?php 
    if($this->Flash->render('alert')){
        echo $this->Flash->render('alert');
    }
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 nginx中的CORS策略应该如何配置
  • ¥30 信号与系统实验:采样定理分析
  • ¥100 我想找人帮我写Python 的股票分析代码,有意请加mathtao
  • ¥20 Vite 打包的 Vue3 组件库,图标无法显示
  • ¥15 php 同步电商平台多个店铺增量订单和订单状态
  • ¥15 关于logstash转发日志时发生的部分内容丢失问题
  • ¥17 pro*C预编译“闪回查询”报错SCN不能识别
  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题