Zend talk。我在我的网络应用程序中构建了一个自定义Zend_form。问题是我无法显示错误(当我提交没有任何文本的表单时)。我错过了一些明显的东西吗?
class Commentform extends Zend_Form
{
public function init()
{
$this->setMethod('post');
$this->setAction('');
$text=new Zend_Form_Element_Textarea('text');
$text->setRequired(true)
->addFilter('StringTrim')
->addFilter('StripTags')
->setDescription('bla bla');
$submit=new Zend_Form_Element_Submit('commenta');
$this->addElements(array($text,$submit));
$this->setElementDecorators(array(
'ViewHelper',
array('Description',array(
'tag'=>'span','class'=>'medium','placement'=>'PREPEND')),
));
$this->setDecorators(array(
'FormElements',
'FormErrors',
'Form',array('Description',array('tag'=>'h2','placement'=>'prepend')),
array('HtmlTag', array('tag' => 'div','class'=>'write_comment')),
));
$this->setDescription('zend zend');
}
}
感谢
卢卡
答案 0 :(得分:2)
你必须在表单元素中放置一个“错误”装饰器。 Zend_Form_Element 默认加载此“错误”装饰器,如 Zend_Form_Element 源代码中所示:
public function loadDefaultDecorators()
{
...
$this->addDecorator('ViewHelper')
->addDecorator('Errors')
->addDecorator('Description', array('tag' => 'p', 'class' => 'description'))
->addDecorator('HtmlTag', array('tag' => 'dd', 'id' => array('callback' => $getId)))
->addDecorator('Label', array('tag' => 'dt'));
...
}
因为您在没有提供“错误”装饰器的情况下重写此行为,所以元素级错误不会显示。
答案 1 :(得分:2)
在表单上使用的正确装饰器是FormErrors,例如
$this->setDecorators(array(
'FormElements',
'FormErrors',
'Form',array('Description',array('tag'=>'h2','placement'=>'prepend')),
array('HtmlTag', array('tag' => 'div','class'=>'write_comment')),
));
错误装饰器用于元素。