Flash-Messages in Symfony2 doesn't seem to work in my twig-template

后端 未结 7 1635
不知归路
不知归路 2021-01-02 05:31

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 layou

7条回答
  •  春和景丽
    2021-01-02 06:12

    This is pretty old at time of writing so imagine you've worked it out by now, but for reference sake, it's has rather than hasFlash. So..

    {% if app.session.flashbag.has('notice') %} 
        
    {{ app.session.flashbag.get('notice') }}
    {% endif %}

提交回复
热议问题