2010-12-01 38 views
1

:通過代碼Zend框架1.7〜1.8例外的形式方法getMaxFileSize抓切換從1.7版本到1.8以上</p> <p>更新後是什麼原因這個錯誤消息<code>"Exception caught by form Method getMaxFileSize does not exist"</code>不存在

 ->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'); 
+0

您正在調用一個不存在的方法。代碼調用它是什麼? – Ashley 2010-12-01 13:49:28

回答

0

ollowing。

'validators' => array(
array('Size', false, array('min' => '3', 'max' => '9')) 
) 
相關問題