1

我有一个不使用实体类的简单表单。

发布后我想使用验证器验证值,但即使值为空或无效,错误列表的计数也始终为零。

这是(或多或少)我正在执行的代码:

    use Symfony\Component\Validator\Constraints\Email;
    use Symfony\Component\Validator\Constraints\MinLength;
    use Symfony\Component\Validator\Constraints\Collection;


    public function formAction(){
        $collectionConstraint = new Collection(array(
            'name' => array(new MinLength(5)),
            'email' => array(new Email(array('message' => 'Invalid email address'))),
        ));

        $options = array('validation_constraint' => $collectionConstraint);
        $form = $this->createFormBuilder(null, $options)
                ->add('name', 'text', array('label' => '', 'attr' => array('placeholder' => 'Your name')))
                ->add('email', 'email', array('label' => '', 'attr' => array('placeholder' => 'E-mail')))
                ->getForm();

        $request = $this->getRequest();
        $error   = false;
        if ($request->getMethod() == 'POST') {
            $form->bindRequest($request);

            if ($form->isValid()) {
                $data      = $form->getData();
                $errorList = $this->get('validator')->validateValue($data, $collectionConstraint);

                // count($errorList) is always zero even when the values are empty or invalid…
            }
            else {
                $error = true;
            }
        }

        // ... snip ...
    }
4

1 回答 1

0

我会说这是正常的,因为您计算$errorList了测试中的元素数量,表明该表单是有效的。所以我会说,当表格有效时,它会显示 0,而当它无效时,它什么也不显示。

您不需要手动运行验证,因为它已经由$form->isValid()语句执行。

如果要计算发生的约束违规次数,只需count($form->getErrors())在调用$form->isValid().

最后,如果还没有完成,你应该阅读http://symfony.com/doc/current/book/forms.html#using-a-form-without-a-class

干杯

于 2012-07-04T13:10:47.203 回答