我正在使用
{{ form_label(form.fieldName) }}
最后生成带有冒号 (:) 的标签。如何删除自动添加到标签?
您可以使用Form Theming自定义表单呈现。您必须自定义的是form_label块。
谢谢帕特,解决方案是:
{% form_theme form _self %}
{% block field_label %}
{% spaceless %}
{% if not compound %}
{% set label_attr = label_attr|merge({'for': id}) %}
{% endif %}
{% if required %}
{% set label_attr = label_attr|merge({'class': (label_attr.class|default('') ~ ' required')|trim}) %}
{% endif %}
{% if label is empty %}
{% set label = name|humanize %}
{% endif %}
<label{% for attrname, attrvalue in label_attr %} {{ attrname }}="{{ attrvalue }}"{% endfor %}>{{ label|trans({}, translation_domain) }}</label>
{% endspaceless %}
{% endblock field_label %}
简单地说,您可以vars.label
在现场使用:
<label for="{{ form.fieldName.vars.id }}">{{ form.fieldName.vars.label }}</label>