我想创建以下元素:
<input type="file" name="file[]">
我在myproject / module / Member / src / Member / Form / EditForm.php中尝试了以下代码:
$this->add(array(
'name' => 'file',
'type' => 'file',
'attributes' => array(
'class' => 'form-control col-md-7 col-xs-12',
'id' => 'file',
),'options' => array(
'multiple'=>TRUE
),
));
和
$this->add(array(
'name' => 'file[]',
'type' => 'file',
'attributes' => array(
'class' => 'form-control col-md-7 col-xs-12',
'id' => 'file',
),'options' => array(
'multiple'=>TRUE
),
));
但它不起作用。
答案 0 :(得分:4)
对于文件上传Zend Framework 2 has a special FileInput
class。
使用此类非常重要,因为它还可以执行其他重要操作,例如validation before filtering。还有special filters like the File\RenameUpload
可以为您重命名上传内容。
考虑到$this
是您的InputFilter
实例,代码可能如下所示:
$this->add(array(
'name' => 'file',
'required' => true,
'allow_empty' => false,
'filters' => array(
array(
'name' => 'File\RenameUpload',
'options' => array(
'target' => 'upload',
'randomize' => true,
'overwrite' => true
)
)
),
'validators' => array(
array(
'name' => 'FileSize',
'options' => array(
'max' => 10 * 1024 * 1024 // 10MB
)
)
),
// IMPORTANT: this will make sure you get the `FileInput` class
'type' => 'Zend\InputFilter\FileInput'
);
将文件元素附加到表单:
// File Input
$file = new Element\File('file');
$file->setLabel('My file upload')
->setAttribute('id', 'file');
$this->add($file);
检查the documentation以获取有关文件上传的更多信息。 或者查看the documentation here如何制作上传表格