我有一个带有$recipe_name
如下元素的 zend 表单。我想_recipename
使用验证(Zend_Validate_DbNoRecordExists)检查是否已经存在。
$recipe_name= $this->createElement('text',$i.'_recipename',array('label'=> "Extra Item Name in ".$data['language'].'', 'class'=> 'inp-form',) );
$recipe_name->setDecorators(array( 'ViewHelper',
array(array('data'=>'HtmlTag'), array('tag' => 'td')),
array('Label', array('tag' => 'td','style')),
array(array('row'=>'HtmlTag'),array('tag'=>'tr','openOnly'=>true))));
$recipe_name->setRequired(true);
$recipe_name->addValidator('NotEmpty',true);
$recipe_name->getValidator('NotEmpty')->setMessage("Please enter Recipe section name in ".$data['language']);
我怎么能这样做?