设置 NotEmpty 验证器错误消息

Set NotEmpty validator error message

我正在尝试使用 ZF2 表单和 NotEmpty 验证器设置自定义错误消息。

在我的表单中,我有以下单选元素。

$this->add(array(
    'name' => 'paymentMethod',
    'type' => 'Radio',
    'options' => array(
        'label' => _('Payment Methods:'),
        'value_options' => $paymentMethods,
        'disable_inarray_validator' => TRUE,
    ),
));

在我的输入过滤器中我有

$inputFilter->add(array(
    'name' => 'paymentMethod',
    'required' => TRUE,
    'filters' => array(
        array('name' => 'Int'),
    ),
    'validators' => array(
        array(
            'name' => 'NotEmpty',
            'break_chain_on_failure' => true,
            'options' => array(
                'messages' => array(
                    NotEmpty::IS_EMPTY => _("You must select the payment method"),
                ),
            ),
        ),
        array(
            'name' => 'InArray',
            'options' => array(
                'haystacK' => $this->getPaymentMethods(),
                'messages' => array(
                    InArray::NOT_IN_ARRAY => _("This payment method does not exist"),
                ),
            ),
        ),
    ),
));

从我的输入过滤器中可以看出,我为我的 NotEmpty 验证器设置了自定义消息。我遇到的问题是表单输出默认错误消息“需要值且不能为空”,而不是我自定义的错误消息。

我认为这与 'required' => TRUE 自动设置 NotEmpty 验证器有关,但我不知道如何禁用它。

我有其他带有此验证器的文本元素,它们可以正常显示自定义错误消息,但此单选元素不会。我也有一个 multicheckbox 元素有同样的问题。

有人知道为什么会这样吗?

非常感谢。

编辑

我现在在另一个元素上遇到了同样的问题,在本例中是 DoctrineModule\Form\Element\ObjectMultiCheckbox。

元素已定义

$this->add(array(
    'name' => 'categories',
    'type' => 'Admin\DoctrineModule\Form\Element\ObjectMultiCheckbox',
    'options' => array(
        'label' => _('Categories:'),
        'label_attributes' => array('class' => 'required'),
        'object_manager' => $this->getEntityManager(),
        'target_class' => 'Application\Entity\Categories',
        'property' => 'category',
        'is_method' => true,
        'find_method' => array(
            'name' => 'FindAll',
        ),
        'disable_inarray_validator' => TRUE,
    ),
));

在我的 getInputFilterSpecification() 方法中我有

...
'categories' => 
    array(
        'required' => TRUE,
        'allow_empty' => TRUE,
        'continue_if_empty' => TRUE,
        'filters' => array(
            array('name' => 'Int'),
        ),
        'validators' => array(
            array(
                'name' => 'NotEmpty',
                'break_chain_on_failure' => true,
                'options' => array(
                    'messages' => array(
                        NotEmpty::IS_EMPTY => _("You must select the items categories"),
                    ),
                ),
            ),
            array(
                'name' => 'Freedom\Zend\Validator\Doctrine\Db\DoctrineRecordExists',
                'options' => array(
                    'entityManager' => $this->getEntityManager(),
                    'entity' => 'Application\Entity\Categories',
                    'identifier' => 'catagoryId',
                    'messages' => array(
                        DoctrineRecordExists::ERROR_NO_RECORD_FOUND => _("This category does not exist"),
                    ),
                ),
            ),
        ),
    )
...

如您所见,我已经尝试了 'allow_empty''continue_if_empty' 选项,但没有成功。我也试过 'required' => FALSE, 但元素只是通过了验证。

当 NotEmpty 验证失败时显示默认消息。

我对你的代码做了一些修改,但我没有测试。尝试让我知道它是否有效。祝你好运

$inputFilter->add(array(
'name' => 'paymentMethod',
'required' => TRUE,
'filters' => array(
    array('name' => 'Int'),
),
'validators' => array(
    array(
        'name' => 'NotEmpty',
        'options' => array(
            'messages' => array(
                NotEmpty::IS_EMPTY => "You must select the payment method",
            ),
        ),
        'break_chain_on_failure' => true
    ),
    array(
        'name' => 'InArray',
        'options' => array(
            'haystacK' => $this->getPaymentMethods(),
            'messages' => array(
                InArray::NOT_IN_ARRAY => _("This payment method does not exist"),
            ),
        ),
    ),
),

));

我找到了解决问题的方法。 我将 'required' => TRUE, 选项更改为 'allow_empty' => TRUE,,现在我的错误消息显示正确。

$inputFilter->add(array(
    'name' => 'paymentMethod',
    'allow_empty' => TRUE,
    'filters' => array(
        array('name' => 'Int'),
    ),
    'validators' => array(
        array(
            'name' => 'NotEmpty',
            'options' => array(
                'messages' => array(
                    NotEmpty::IS_EMPTY => _("You must select the payment method"),
                ),
            ),
            'break_chain_on_failure' => true,
        ),
        array(
            'name' => 'InArray',
            'options' => array(
                'haystacK' => $this->getPaymentMethods(),
                'messages' => array(
                    InArray::NOT_IN_ARRAY => _("This payment method does not exist"),
                ),
            ),
        ),
    ),
));

我假设未将所需选项设置为 true 会停止自动创建 NotEmpty 验证器。

修改您的输入过滤器,将 'required' => TRUE 选项更改为 'required' => false

$inputFilter->add(array(
    'name' => 'paymentMethod',
    'required' => false,
    'filters' => array(
        array('name' => 'Int'),
    ),
    'validators' => array(
        array(
            'name' => 'NotEmpty',
            'break_chain_on_failure' => true,
            'options' => array(
                'messages' => array(
                    NotEmpty::IS_EMPTY => _("You must select the payment method"),
                ),
            ),
        ),
        array(
            'name' => 'InArray',
            'options' => array(
                'haystacK' => $this->getPaymentMethods(),
                'messages' => array(
                    InArray::NOT_IN_ARRAY => _("This payment method does not exist"),
                ),
            ),
        ),
    ),
));