1

我正在使用

{{ form_label(form.fieldName) }}

最后生成带有冒号 (:) 的标签。如何删除自动添加到标签?

4

3 回答 3

1

您可以使用Form Theming自定义表单呈现。您必须自定义的是form_label块。

于 2012-09-03T05:55:23.487 回答
0

谢谢帕特,解决方案是:

{% 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 %}
于 2012-12-11T13:28:44.653 回答
0

简单地说,您可以vars.label在现场使用:

<label for="{{ form.fieldName.vars.id }}">{{ form.fieldName.vars.label }}</label>
于 2015-01-08T20:53:16.030 回答