Zend_Validate的:Db_NoRecordExists与学说(Zend_Validate:

2019-07-17 11:18发布

嘿,我想验证与Zend_Validate的和Zend_Form的一种形式。

我的元素:

$this->addElement('text', 'username', array(
    'validators' => array(
        array(
            'validator' => 'Db_NoRecordExists',
            'options' => array('user','username')
            )
    )
));

对于我使用的原则来处理我的数据库,Zend_Validate中错过将对DBAdapter。 我可以通过在选项适配器,但我怎么结合一个Zend_Db_Adapter_Abstract和原则?

是否有可能得到这个工作的easyer方式?

谢谢!

Answer 1:

用自己的验证解决了这个问题:

<?php

class Validator_NoRecordExists extends Zend_Validate_Abstract
{
    private $_table;
    private $_field;

    const OK = '';

    protected $_messageTemplates = array(
        self::OK => "'%value%' ist bereits in der Datenbank"
    );

    public function __construct($table, $field) {
        if(is_null(Doctrine::getTable($table)))
            return null;

        if(!Doctrine::getTable($table)->hasColumn($field))
            return null;

        $this->_table = Doctrine::getTable($table);
        $this->_field = $field;
    }

    public function isValid($value)
    {
        $this->_setValue($value);

        $funcName = 'findBy' . $this->_field;

        if(count($this->_table->$funcName($value))>0) {
            $this->_error();
            return false;
        }

        return true;
    }
}

使用这样的:

$this->addElement('text', 'username', array(
    'validators' => array(
        array(
            'validator' => new Validator_NoRecordExists('User','username')
            )
    )
));


文章来源: Zend_Validate: Db_NoRecordExists with Doctrine