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条)

报告相同问题?

悬赏问题

  • ¥50 adb连接不到手机是怎么回事?
  • ¥15 vs2022无法联网
  • ¥15 TCP的客户端和服务器的互联
  • ¥15 VB.NET操作免驱摄像头
  • ¥15 笔记本上移动热点开关状态查询
  • ¥85 类鸟群Boids——仿真鸟群避障的相关问题
  • ¥15 CFEDEM自带算例错误,如何解决?
  • ¥15 有没有会使用flac3d软件的家人
  • ¥20 360摄像头无法解绑使用,请教解绑当前账号绑定问题,
  • ¥15 docker实践项目