我想在我们的页面上添加对 Flash 消息的支持。我按照此处找到的文档实现了这一点。
我将以下代码片段添加到我的基本布局中。(我也尝试将其添加到特定的操作模板中)。
{% if app.session.hasFlash('notice') %}
<div id="flashmessage" class="flash-notice">
{{ app.session.flash('notice') }}
</div>
{% endif %}
添加后抛出以下错误
Twig_Error_Runtime:第 66 行的“MyBundle::layout.html.twig”中不存在“”的项目“hasFlash”
还有什么我需要做的吗?