我有一个Customer实体,它只有一个唯一的电子邮件字段。我正在尝试编辑客户的电子邮件,验证工作正常。但是我在我的控制器中有这个:
public function updateAction(Request $request, $id) {
$em = $this->getDoctrine()->getManager();
$entity = $em->getRepository('AcmeDemoBundle:Customer')->find($id);
if (!$entity) {
throw $this->createNotFoundException('Unable to find Customer entity.');
}
$editForm = $this->createForm(new CustomerType(), $entity);
$editForm->bind($request);
if ($editForm->isValid()) {
$em->persist($entity);
$em->flush();
return $this->redirect($this->generateUrl('ticket_result'));
}
var_dump($editForm->getErrors());
return $this->render('AcmeDemoBundle:Customer:edit.html.twig', array(
'entity' => $entity,
'edit_form' => $editForm->createView(),
));
}
var_dump返回一个空数组,但验证程序设置了一个唯一错误,$editForm->isValid()
返回false。有没有办法在验证期间检查控制器中的特定错误,还能解释它返回空错误数组的原因吗?基本上,如果出现错误,我想提供“合并”选项。
编辑:这是formtype:
namespace Acme\DemoBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class CustomerType extends AbstractType {
public function buildForm(FormBuilderInterface $builder, array $options) {
$builder
->add('email', 'email', array('required'=>true))
;
}
public function setDefaultOptions(OptionsResolverInterface $resolver) {
$resolver->setDefaults(array(
'data_class' => 'Acme\DemoBundle\Entity\Customer',
'cascade_validation' => true,
));
}
public function getName() {
return 'acme_demobundle_customertype';
}
}
枝条模板:
{% extends 'AcmeDemoBundle::layout.html.twig' %}
{% block body -%}
<h1>Customer edit</h1>
<form action="{{ path('customer_update', { 'id': entity.id }) }}" method="post" {{ form_enctype(edit_form) }}>
<input type="hidden" name="_method" value="PUT" />
{{ form_widget(edit_form) }}
<p>
<button type="submit">Edit</button>
</p>
</form>
{% endblock %}
这是我的验证:
Acme\DemoBundle\Entity\Customer:
constraints:
- Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity:
fields: email
message: "A customer under that email address already exists"
properties:
email:
- Email: ~
答案 0 :(得分:21)
出于调试目的,如果您使用Symfony 2,则可以使用$form->getErrorsAsString()
而不是$form->getErrors()
。*
引自this answer:
$form->getErrorsAsString()
应仅用于调试表单...它 将包含每个子元素的错误,而不是这种情况 of $ form-&gt; getErrors()。
更新1:
“使用最近的Symfony版本,您必须使用$form->getErrors(true, false);
代替。第一个参数对应deep
,第二个对应flatten
”(请参阅@Roubi的评论)
答案 1 :(得分:4)
好的,在这里找到答案:
Symfony2 invalid form without errors
事实证明,每个表格的孩子都有自己独立的错误。执行
的var_dump时$editForm->getChildren()['email']->getErrors()
我明白了:
array (size=1)
0 =>
object(Symfony\Component\Form\FormError)[531]
private 'message' => string 'A customer under that email address already exists' (length=50)
protected 'messageTemplate' => string 'A customer under that email address already exists' (length=50)
protected 'messageParameters' =>
array (size=0)
empty
protected 'messagePluralization' => null
我仍然想知道如何确定错误是由于唯一冲突而不解析错误消息字符串。
答案 2 :(得分:1)
您可以在每个字段上使用error_bubbling将错误冒泡到$ form。
如果没有,您还可以解决错误
foreach ($children as $child) {
if ($child->hasErrors()) {
$vars = $child->createView()->getVars();
$errors = $child->getErrors();
foreach ($errors as $error) {
$this->allErrors[$vars["name"]][] = $this->convertFormErrorObjToString($error);
}
}
}
答案 3 :(得分:1)
以下解决方案对我有用:
$ form-> getErrors(true)
答案 4 :(得分:0)
在Symfony 2.3中,你可以使用这个:
if ($form->isValid()){
# Code...
} else {
foreach ($form->getIterator() as $key => $child) {
if ($child instanceof Form) {
foreach ($child->getErrors() as $error) {
$errors[$key] = $error->getMessage();
}
}
}
}
这将为您提供一个包含子项错误的数组($errors
)。
答案 5 :(得分:0)
当表单被提交并且无效时,您可以尝试使用dump
函数。我像这样使用它
if($form->isSubmited() && $form->isValid()){
//SAVE TO DATABASE AND DO YOUR STUFF
}else if($form->isSubmited()){
//SUBMITED BUT WITH ERRORS
dump($form->getErrors(true));
die();
}
请注意,这仅用于调试目的,它将显示您的表单,其中的数据以及任何字段可能具有的所有错误。 在生产模式下,您应该将错误返回到视图并将其显示给用户。