Here's my saveAction code (where the form passes the data to)

public function saveAction()
{
        $user = OBUser();

        $form = $this->createForm(new OBUserType(), $user);

        if ($this->request->getMethod() == 'POST') {
            $form->bindRequest($this->request);
            if ($form->isValid())
                return $this->redirect($this->generateUrl('success_page'));
            else
                return $this->redirect($this->generateUrl('registration_form'));
        }
        else
            return new Response();
}

My question is: how do I get the errors if $form->isValid() returns false?

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

You have two possible ways of doing it:

  • do not redirect user upon error and display {{ form_errors(formView) }} within template file
  • access error array as $form->getErrors()
link|improve this answer
I did the second thing you suggested but form->getErrors() return a blank array. – mives Aug 8 '11 at 10:24
I also did the first one (w/ php templates <?php echo $view['form']->errors($form) ?>) but still it's empty! – mives Aug 8 '11 at 10:33
then don't know what's wrong... – nefo_x Aug 8 '11 at 10:50
6  
@mives You must set error_bubbling to true in your form type by explicitly setting the option for each and every field. – gilden Sep 10 '11 at 14:57
feedback

Below is the solution that worked for me. This function is in a controller and will return a structured array of all the error messages and the field that caused them.

private function getErrorMessages(\Symfony\Component\Form\Form $form) {
    $errors = array();
    foreach ($form->getErrors() as $key => $error) {
        $template = $error->getMessageTemplate();
        $parameters = $error->getMessageParameters();

        foreach($parameters as $var => $value){
            $template = str_replace($var, $value, $template);
        }

        $errors[$key] = $template;
    }
    if ($form->hasChildren()) {
        foreach ($form->getChildren() as $child) {
            if (!$child->isValid()) {
                $errors[$child->getName()] = $this->getErrorMessages($child);
            }
        }
    }

    return $errors;
}
link|improve this answer
Improved gist.github.com/2011671 but still not what I want. I want array keys to be field names, but they are not. – umpirsky Mar 10 at 15:03
feedback

You can also use the validator service to get constraint violations:

$errors = $this->get('validator')->validate($user);
link|improve this answer
4  
This will validate the object but not the form. If, for example, the CRSF token was the cause of the error the message wouldn't be included. – Icode4food Nov 21 '11 at 17:50
feedback

antoinet’s answer led me to this:

if( $form->isValid() )
{
    // ...
}
else
{
    // get a ConstraintViolationList
    $errors = $this->get('validator')->validate( $user );

    $result = '';

    // iterate on it
    foreach( $errors as $error )
    {
        // Do stuff with:
        //   $error->getPropertyPath() : the field that caused the error
        //   $error->getMessage() : the error message
    }
}

API reference:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.