我有这样的代码:
$f = $this->add('Form', null, null, array('form/stacked'));
$f->setModel('Application',false);
$f->setLayout('form/create_brand_2');
$f_fbid = $f->addField('Line','app_id','')->validateNotNull();
if($f->isSubmitted()){
return $f_fbid->displayFieldError('Error text');
}
但是我没有得到错误文本,也没有在validateNotNull上。它没有设置布局。这是一个错误还是只是它的方式,最好的工作是什么?