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

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

    By symfony 2.6 +

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

    Because flashbag is by this version array you need foreach it or use index. I m using index because i dont need something more.

提交回复
热议问题