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

后端 未结 7 1599
不知归路
不知归路 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:27

    do you use symfony 2.0 or 2.1 (currently master branch)?

    for symfony 2.1 the documentation is located here: http://symfony.com/doc/2.1/book/controller.html#flash-messages

    flash messages are shown like this:

    {% for flashMessage in app.session.flashbag.get('notice') %}
        <div class="flash-notice">
            {{ flashMessage }}
        </div>
    {% endfor %}
    
    0 讨论(0)
提交回复
热议问题