我是Symfony的新手。我写了下面的代码来验证并返回错误消息,如果验证失败。但我只能得到错误消息而不是验证失败的字段。以下是我的代码:
if ($request->isXmlHttpRequest()) {
if ($form->isValid()) {
//do something here
}
$errors = $this->get('my_form')->getErrorMessages($form);
return new JsonResponse(['errors' => $errors], 400);
}
有人可以告诉我如何获取字段名称以及错误消息。
由于
答案 0 :(得分:2)
为了获取表单的所有错误,请使用$form->getErrors($deep=true, $flatten=true)
,以便将错误转换为名称为字段名称和键作为消息的数组,如下所示:
$errors = $form->getErrors(true, true);
$errorArray = array();
foreach($errors as $e){
//get the field that caused the error
$field = $e->getOrigin();
$errorArray[$field->getName()] = isset($errorArray[$field->getName()]) ? $errorArray[$field->getName()] : array();
$errorArray[$field->getName()][] = $e->getMessage();
}
答案 1 :(得分:1)
这是我使用的功能:
/**
* Get errors from form.
*
* @param \Symfony\Component\Form\FormInterface $form
* @return array
*/
private function getErrorsFromForm(FormInterface $form)
{
$errors = array();
foreach ($form->getErrors() as $error) {
$errors[] = $error->getMessage();
}
foreach ($form->all() as $childForm) {
if ($childForm instanceof FormInterface) {
if ($childErrors = $this->getErrorsFromForm($childForm)) {
$errors[$childForm->getName()] = $childErrors;
}
}
}
return $errors;
}