Flash-Messages in Symfony2 doesn't seem to wor

2019-02-09 00:51发布

I want to add support for flash messages on our pages. I implemented this by following the documentation found here.

I added the following snipplet to my base layout. (i also tried to add it to a specific action template).

{% if app.session.hasFlash('notice') %} 
    <div id="flashmessage" class="flash-notice"> 
       {{ app.session.flash('notice') }} 
   </div> 
{% endif %} 

After adding the following error is thrown

Twig_Error_Runtime: Item "hasFlash" for "" does not exist in "MyBundle::layout.html.twig" at line 66

Is there anything else i need to do ?

7条回答
来,给爷笑一个
2楼-- · 2019-02-09 01:47

I just figure out that flash messages are not working if intercept_redirects is true in debug mode.

查看更多
登录 后发表回答