1

我正在尝试使用 cakephp 创建多个文件上传。但是,我遇到了一个问题,我无法启用蛋糕内置上传功能的“多重”功能。

这是我得到的:

<?php
    echo $this->Form->create('Cmt', array('type'=>'file','multiple'=>'multiple'));
    echo $this->Form->file('File');
    echo $this->Form->submit('Upload');
    echo $this->Form->end(); 
?>
4

2 回答 2

2

最好的解决方案是

echo $this->Form->file('File. ', array('type'=>'file','multiple'=>'multiple'));
于 2014-08-11T01:36:59.407 回答
1

我的错误在于这行代码:

echo $this->Form->create('Cmt', array('type'=>'file','multiple'=>'multiple'));

经过研究,我能够找到正确的并将我的代码修改为:

<?php
    echo $this->Form->create('Cmt');
    echo $this->Form->file('File', array('type'=>'file','multiple'=>'multiple'));
    echo $this->Form->submit('Upload');
    echo $this->Form->end(); 
?>

让它工作:)

于 2013-05-06T06:50:45.037 回答