表格:我提交错误数据时不会出错

时间:2013-08-08 16:28:09

标签: forms symfony silex

我有这个控制器代码来验证表单(我将它用于ajax请求)。问题:当我提交错误数据时,我没有收到任何错误,正如您在下面的输出中看到的那样:

$app->post('/contacto', function (Request $request) use ($app) {


    $form = $app['form.factory']->createBuilder('form', $data)
        ->add('Nombre', 'text', array(
            'constraints' => new Assert\NotBlank(array('message' => 'El campo Nombre es obligatorio'))
        ))
        ->add('Email', 'text', array(
            'required' => false,
            'constraints' => new Assert\Email(array('message' => 'Has introducido un email no válido. Revísalo, por favor.')),
        ))
        ->add('Telefono', 'text', array(
            'label' => 'Teléfono',
            'constraints' => array(
                new Assert\Regex(array('pattern' => "/^(?:\d\s*){8}\d$/", 'message' => 'El teléfono debe tener 9 dígitos')),
                new Assert\NotBlank(array('message' => 'El campo Teléfono es obligatorio')),
            )))
            ->add('Texto', 'textarea', array(
                'constraints' => new Assert\NotBlank(array('message' => 'El campo Texto es obligatorio')),
                'attr' => array('cols' => '76', 'rows' => '8'),
            ))
            ->getForm();

    $post = $request->request->get('form');

    $form->bind($post);

    if ($form->isValid()) {
        $data = $form->getData();

         $app['mailer']->send($message);

        $my_array = array('Gracias, hemos recibido tu mensaje, te contactaremos lo antes posible');

        return new Response('true');
    } else {
        var_dump($form->getData());
        var_dump($form->getErrors());
        die("jfklas");
        return new Response(json_encode($form));
    }
});

array(4) {
  ["Nombre"]=>
  string(8) "fasdfasd"
  ["Email"]=>
  string(5) "fasdf"
  ["Telefono"]=>
  string(7) "9999999"
  ["Texto"]=>
  string(7) "fasdfas"
}
array(0) {
}
jfklas

2 个答案:

答案 0 :(得分:2)

$form->getErrors()返回仅返回表单本身的错误,而不返回子字段的错误。如果指定字段,例如$form['Telefono']->getErrors()或使用$form->getErrorsAsString()

,则可能会出错

答案 1 :(得分:0)

如果您想使用getErrors,则需要将error_bubbling添加到表单项

    ->add('Nombre', 'text', array(
        'error_bubbling' => true, 'constraints' => new Assert\NotBlank(array('message' => 'El campo Nombre es obligatorio'))
    ))