10

我需要在表单上方显示所有错误,并为每个字段显示一个单独的错误。我怎样才能做到这一点?

4

6 回答 6

12

您需要更具体,但希望以下内容可以帮助您。

让我们假设您有一个名为form.

{{ form_errors(form) }}显示不特定于一个字段的全局错误

{{ form_errors(form.email) }}显示特定于字段的错误

{{ form_row(form.email) }}显示字段的 form_widget form_label 和 form_errors

http://symfony.com/doc/2.0/cookbook/form/form_customization.html

编辑:

因此,如果您希望将全局错误和字段错误显示在同一位置,您可以执行以下操作:

{{ form_errors(form) }}
{{ form_errors(form.field1) }}
{{ form_errors(form.field2) }}
...
于 2012-10-22T11:12:14.843 回答
11
{% spaceless %}
    {% if not form.vars.valid %}
            <div class="alert alert-error">
                {{ form_errors(form) }}

        {% for children in form.children %}
            {% if not children.vars.valid %}
                {{ form_errors(children) }}

                {# or with field label
                <ul>
                    {% for error in children.vars.errors %}
                        <li><b>{{ children.vars.label }}</b>: {{ error.message }}</li>
                    {% endfor %}
                </ul>
                #}
            {% endif %}
        {% endfor %}
            </div>
    {% endif %}
{% endspaceless %}

在 sf 2.3 中为我工作

于 2013-12-16T14:20:54.520 回答
9

我在我的包中覆盖了 form_div_layout.html.twig:

{% block form_errors %}
    {% spaceless %}
        {% set a = false %}
        {% for child in form.children  %}
            {% if child.get("errors") %}
                {% set a = 'true' %}
            {% endif %}
        {% endfor %}
        {% if a == true %}
            <div class="alert">
                {% for children in form.children %}
                    {{  form_errors(children) }}
                {% endfor %}
            </div>
        {% endif %}
        {% if errors|length > 0 %}
            <ul>
                {% for error in errors %}
                    {{
                    error.messagePluralization is null
                    ? error.messageTemplate|trans(error.messageParameters, 'validators')
                    : error.messageTemplate|transchoice(error.messagePluralization, error.messageParameters, 'validators')
                    }}
                {% endfor %}
            </ul>
        {% endif %}
    {% endspaceless %}
{% endblock form_errors %}

现在,如果写入form_errors(form)它会在表单中显示所有错误,并且每个字段上的错误也会指示。

于 2012-10-24T11:04:57.077 回答
9

在 Symfony 3.2 中,要获取模板中的所有表单错误,您可以使用有点 hacky,但简单且有效的解决方案form.vars.errors.form.getErrors(true)

<ul>
    {% for error in formView.vars.errors.form.getErrors(true) %}
    <li>{{ error.message }}</li>
    {% endfor %}
</ul>

诀窍是:

  1. formView.vars.errors.form通过错误迭代器( )的原始表单对象,
  2. form.getErrors(true)您提供了一个遍历所有表单错误的递归迭代器。
于 2017-08-10T09:19:00.473 回答
0

您的表单以及您的字段都有单独的错误字段开始。您能否更具体地说明您要做什么以及问题出在哪里?

于 2012-10-22T09:48:45.150 回答
0

我修改了@korvinko 的脚本,这适用于 Symfony 2.6.11 `

{% block form_errors %}
    {% spaceless %}
        <ul>
            {% for children in form.children %}
                {% if not children.vars.valid %}
                   {% for error in children.vars.errors %}
                        <li>{{ children.vars.label ~ ' ' ~
                        error.messagePluralization is null
                        ? error.messageTemplate|trans(error.messageParameters, 'validators')
                        : error.messageTemplate|transchoice(error.messagePluralization, error.messageParameters, 'validators')
                        }}</li>
                    {% endfor %}
                {% endif %}
            {% endfor %}
        </ul>

        {% if errors|length > 0 %}
            <ul>
                {% for error in errors %}
                    <li>{{
                    error.messagePluralization is null
                    ? error.messageTemplate|trans(error.messageParameters, 'validators')
                    : error.messageTemplate|transchoice(error.messagePluralization, error.messageParameters, 'validators')
                    }}</li>
                {% endfor %}
            </ul>
        {% endif %}
    {% endspaceless %}
{% endblock form_errors %}

`

于 2015-09-02T13:56:14.080 回答