Zend Form Validator:元素A或元素B.

时间:2010-03-06 18:42:08

标签: zend-framework zend-form zend-form-element

我的Zend表单中有两个字段,我想应用验证规则,确保用户输入这两个字段中的任何一个。

    $companyname = new Zend_Form_Element_Text('companyname');
    $companyname->setLabel('Company Name');
    $companyname->setDecorators($decors);
    $this->addElement($companyname);

    $companyother = new Zend_Form_Element_Text('companyother');
    $companyother->setLabel('Company Other');
    $companyother->setDecorators($decors);
    $this->addElement($companyother);

如何添加一个可以查看这两个字段的验证器?

4 个答案:

答案 0 :(得分:12)

请参阅此page上的“注意:验证上下文”。 Zend_Form将上下文传递给每个Zend_Form_Element :: isValid调用作为第二个参数。因此,只需编写自己的验证器来分析上下文。

修改
好吧,我以为我会自己开枪。它没有经过测试,也不是达到目的的手段,但它会给你一个基本的想法。

class My_Validator_OneFieldShouldBePresent extend Zend_Validator_Abstract
{
    const NOT_PRESENT = 'notPresent';

    protected $_messageTemplates = array(
        self::NOT_PRESENT => 'Field %field% is not present'
    );

    protected $_messageVariables = array(
        'field' => '_field'
    );

    protected $_field;

    protected $_listOfFields;

    public function __construct( array $listOfFields )
    {
        $this->_listOfFields = $listOfFields;
    }

    public function isValid( $value, $context = null )
    {
        if( !is_array( $context ) )
        {
            $this->_error( self::NOT_PRESENT );

            return false;
        }

        foreach( $this->_listOfFields as $field )
        {
            if( isset( $context[ $field ] ) )
            {
                return true;
            }
        }

        $this->_field = $field;
        $this->_error( self::NOT_PRESENT );

        return false;
    }
}

用法:

$oneOfTheseFieldsShouldBePresent = array( 'companyname', 'companyother' );

$companyname = new Zend_Form_Element_Text('companyname');
$companyname->setLabel('Company Name');
$companyname->setDecorators($decors);
$companyname->addValidator( new My_Validator_OneFieldShouldBePresent( $oneOfTheseFieldsShouldBePresent ) );
$this->addElement($companyname);

$companyother = new Zend_Form_Element_Text('companyother');
$companyother->setLabel('Company Other');
$companyother->setDecorators($decors);
$companyname->addValidator( new My_Validator_OneFieldShouldBePresent( $oneOfTheseFieldsShouldBePresent ) );
$this->addElement($companyother);

答案 1 :(得分:1)

@fireeyedboy提供的解决方案非常方便,但不能解决这个问题。

Zend_Validate_Abstract正在使用上下文,该上下文不能作为变量传递给isValid()。这种方式使用isValid()方法(无论是原始方法还是覆盖方法)时,空字段不会被传递和验证(除非您有setRequired(true)setAllowEmpty(false),我们不知道我想)。因此,如果您将两个字段(companynamecompanyother)都清空,则不会执行任何操作。我所知道的唯一解决方案是扩展Zend_Validate类以允许验证空字段。

如果您知道更好的解决方案,请告诉我,因为我也在努力解决类似的问题。

答案 2 :(得分:0)

我没有遇到过这样的解决方案,但它完全有效,所以+1。

我会扩展Your_Form::isValid()以包含对这两个元素的值的手动检查。

如果所有字段都通过了各自的验证器,则此验证可能属于整个表单,因此可以将其置于表单的验证而不是字段。你是否同意这种思路?

答案 3 :(得分:0)

我同意@chelmertz这样的功能不存在。

我不同意的是延长Your_Form::isValid()。相反,我write a custom Validator接受两个必须具有值的表单元素的值。这样我就可以在任意表单元素上重用它。这有点类似于相同的验证器。