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

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

    Did you set the flash message somewhere in your action?

    $this->get('session')->setFlash('notice', 'Your changes were saved!');
    

    Remember that flash messages will be stored on the user's session for exactly one additional request.

提交回复
热议问题