Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我需要使用此语句的每个模板中
{{ form_stylesheet(form) }} {{ form_javascript(form) }}
如果页面没有任何表单变量,即其正常页面,则模板会出错。
有什么方法可以检查是否form存在然后加载那些不存在的
form
if (form.present) then {{ form_stylesheet(form) }} {{ form_javascript(form) }}
{% if form is defined %} {{ form_stylesheet(form) }} {{ form_javascript(form) }} {% endif %}
http://twig.sensiolabs.org/doc/tags/if.html