0

在我需要使用此语句的每个模板中

{{ form_stylesheet(form) }}
{{ form_javascript(form) }}

如果页面没有任何表单变量,即其正常页面,则模板会出错。

有什么方法可以检查是否form存在然后加载那些不存在的

if (form.present) then
{{ form_stylesheet(form) }}
    {{ form_javascript(form) }}
4

1 回答 1

2
{% if form is defined  %}
    {{ form_stylesheet(form) }}
    {{ form_javascript(form) }}
{% endif %}

http://twig.sensiolabs.org/doc/tags/if.html

于 2012-08-09T01:25:41.947 回答