如何在适当的位置定位Symfony2表单错误?

时间:2012-09-06 07:17:00

标签: symfony symfony-forms

我在我的项目中使用Symfony表单,这里是代码:

表格

public function buildForm(FormBuilder $builder, array $options)
{
    $builder->add('name', 'text', array('required' => true, 'error_bubbling' => true));
    $builder->add('email', 'email', array('required' => true, 'error_bubbling' => true));
    $builder->add('message', 'textarea', array('required' => true, 'error_bubbling' => true));
}

public function getDefaultOptions(array $options)
{
    $constraintCollection = new Collection(array(
        'name' => new NotBlank(array("message" => "Please fill out Name field")),
        'email' => array(new Email(array("message" => "Invalid Email", "checkMX" => true)),
                         new NotBlank(array("message" => "Please fill out Email field"))),
        'message' => new NotBlank(array("message" => "Please fill out Message field"))
    ));

    return array(
        "validation_constraint" => $constraintCollection,
    );
}

模板(Twig) -

<form action="{{ path('somePath') }}" method="post">
        <p>Contact Us :</p>
          {{ form_errors(form.name) }}
        <p> {{ form_label(form.name, "Your Name") }}
            {{ form_widget(form.name) }}
        </p>
          {{ form_errors(form.email) }}
        <p> {{ form_label(form.email, "Your Email") }}
            {{ form_widget(form.email) }}
        </p>
          {{ form_errors(form.message) }}
        <p> {{ form_label(form.message, "Your Message") }}
            {{ form_widget(form.message) }}
        </p>
        {{ form_rest(form) }}
    <div class="submit-button">
      <button class="button">Submit</button>
    </div>
</form>

当我尝试提交空表单时,它没有显示任何错误消息,所以我也添加了

{{ form_errors(form) }}之后

<form>,我看到它Here 但现在它显示我在Top位置的形式错误而不是他们各自的领域。
我在这里做错了吗?谢谢你的时间。

1 个答案:

答案 0 :(得分:4)

删除'error_bubbling'=&gt;表单定义中的true选项。此选项使字段上的任何错误都“传递”到表单,这就是为什么你看到form_errors(form)而不是form_errors(field)中的错误