0

如何通过树枝模板在控制器中呈现验证错误。我无法访问控制器中的验证错误。

我找到了一种方法来做到这一点

$validator = $this->get('validator');
$errors = $validator->validate($entity);
$content = $this->renderView('YourBundle:YourEntity:template.html.twig',array('errors'=>$errors));

{% if errors %}
    {% for error in errors %}
        <li>{{ error.message }}</li>
    {% endfor %}
{% endif %}

如何在此处获取有错误的字段名称

4

1 回答 1

2
$validator = $this->get('validator');
$errors = $validator->validate($entity);
$content = $this->renderView('YourBundle:YourEntity:template.html.twig',array('errors'=>$errors));

{% if errors %}
    {% for error in errors %}
        <li>{{ error.message }}</li>
        <li>{{ error.propertypath }}</li>
    {% endfor %}
{% endif %}
于 2013-04-09T06:46:50.647 回答