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 %}
在添加以下错误之后,就推倒了:
Twig_Error_Runtime: 在“MyBundle:layout.html.twig”第66行中不存在“斜线”项目。
是否有任何东西需要做?