5

我想在设置变量时包含一个模板。未设置变量时,不得包含模板。

{% if data is defined %}
    {% block content %}
        {% include 'data.html.twig' with  { 'data' : data} %} {# Line 14 #}
    {% endblock %}  
{% endif %}

但是这个检查不起作用。data未定义时会发生错误:

 Twig_Error_Runtime: Variable "data" does not exist in "text.html.twig" at line 14

data但是 Twig 在定义时必须跳过该行。谁能解释这种行为,更重要的是:我该如何解决这个问题?

4

1 回答 1

11

感谢我的室友,我找到了解决方案。if必须在block. 我仍然不知道为什么需要这样做。

 {% block content %}
    {% if data is defined %}
        {% include 'data.html.twig' with  { 'data' : data} %} {# Line 14 #}
   {% endif %}
{% endblock %}
于 2012-12-18T22:53:47.957 回答