我想在锚标记点击上传多个图片。我可以使用ng-file-upload
有人可以建议我如何在锚标签点击上传多个图像。
<a href=""><i class="fa fa-camera"></i></a>
被修改
<a href="">
<i class="fa fa-camera">
<div type="file" ng-show="false" ngf-select ng-model="profilePic.profileImageUrl" ngf-max-size='2000000'>
<img ngf-src="profilePic.profileImageUrl[0]" ngf-default-src="../images/people/110/default_profile.png" height="100" width="100" class="fa fa-camera"></div>
</i>
</a>
答案 0 :(得分:0)
https://github.com/stvnthomas/CodeIgniter-Multi-Upload
看看这个网站是否可以帮到你。
我发现你需要做的这个代码就是将文件标签的名称改为数组,如
<input type="file" name="userfile[]" multiple="multiple" class="btn btn-file"/>
然后你需要把上传代码放到foreach中,如下所示
foreach($_FILES['userfile'] as $file)
{
if (!$this->upload->do_upload($file)) {
$error = array('error' => $this->upload->display_errors());
.
.
.
}
}
看看这是否可以帮到你。我是这个主题的新人,但我搜索了一段时间,这可以帮助你。