我正在尝试使用 ZF2 创建多个上传。我会在输入文件上设置 min 和 max 属性。我尝试了各种方式,但 ZF2 忽略了输入文件的这两个属性。
我能怎么做?
namespace Admin\Form;
use Zend\Form\Form;
class Image extends Form
{
public function __construct()
{
parent::__construct('image');
$this->setAttribute('method', 'post');
$this->add(array(
'name' => 'image',
'type' => 'Zend\Form\Element\File',
'attributes' => array(
'multiple' => true,
'accept' => '.jpg,.png',
'id' => 'image',
'min' => 1,
'max' => 5,
)
));
$this->add(array(
'name' => 'submit',
'attributes' => array(
'type' => 'submit',
'value' => 'save',
'id' => 'submitbutton',
'class' => 'btn btn-success'
)
));
}
}