1
->addElement('file', 'avatar', array(
'required' => false
, 'label' => 'Upload File:'
, 'destination' => '/data/avatar'
, 'filters' => array()
, 'validators' => array(
array('Extension', false, 'jpg,png,gif')
, array('Size', false, 102400)
, array('Count', false, 1)
)
, 'decorators' => $this->groupElementDecorators
))
UPDATE2生產問題: 組裝飾就是根據這個issue,你必須用F數組
$groupElementDecorators = array('ViewHelper', 'FormElements', 'File', 'Errors');
您正在調用一個不存在的方法。代碼調用它是什麼? – Ashley 2010-12-01 13:49:28