zend 相同验证器将一个元素留空时出现问题

发布于 2024-12-04 00:42:41 字数 396 浏览 0 评论 0原文

我使用以下代码:

$form->addElement('password', 'elementOne');
$form->addElement('password', 'elementTwo', array(
    'validators' => array(
        array('identical', false, array('token' => 'elementOne'))
    )
));

如果两个文本不同,我会从验证器收到错误,但如果我将第二个文本留空,则验证将不会触发。为什么?

(我不想按要求输入字段,因为用户只有在想要更改密码时才应该填写这些字段,但他也可以将它们留空)

我做错了什么?我应该将验证器放在两个元素上吗?

I'm using the following code:

$form->addElement('password', 'elementOne');
$form->addElement('password', 'elementTwo', array(
    'validators' => array(
        array('identical', false, array('token' => 'elementOne'))
    )
));

If both texts are different I get an error from the validator, but if I leave the second one empty the validation wont fire. why?

(I dont want to put the fields as required because the user should fill them only if he wants to change the password but he could also leave them empty)

What am I doing wrong? should I put the validator on both elements?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

薆情海 2024-12-11 00:42:41

问题在于AllowEmpty 标志(当不需要元素时,此标志设置为true)。我将其设置为 false,验证器现在按预期触发。

设置允许为空(假)

The problem was the AllowEmpty flag (when the element is not required this flag is set to true). I set it to false and the validator is now firing as expected.

setAllowEmpty(false)

如何视而不见 2024-12-11 00:42:41
$form->addElement('password', 'elementOne');
$form->addElement('password', 'elementTwo', array(
    'validators' => array(
        array('identical', false, array('token' => $_POST['elementOne']))
    )
));
$form->addElement('password', 'elementOne');
$form->addElement('password', 'elementTwo', array(
    'validators' => array(
        array('identical', false, array('token' => $_POST['elementOne']))
    )
));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文