我使用jquery插件名称" blueimp jquery文件上传" - https://github.com/blueimp/jQuery-File-Upload。
我想知道如何在上传多个文件时为每个文件的数据库添加下拉值。
我使用原始javascript模板上传文件,我稍微修改了一下。它看起来像这样。
<script id="template-upload" type="text/x-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
<form id="#fileupload" action="server/php/" method="POST" enctype="multipart/form-data">
<tr class="template-upload fade">
<td>
<span class="preview"></span>
</td>
<td>
<p class="name">{%=file.name%}</p>
<strong class="error text-danger"></strong>
</td>
<td>
<p class="size">Processing...</p>
<div class="progress progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0">
<div class="progress-bar progress-bar-success" style="width:0%;">/div>
</div>
</td>
<td>
<label class="title">
<select name="title[]" >
<option value="val1">val1</option>
<option value="val2">val2</option>
</select>
</label>
<label class="description">
<span>Description:</span><br>
<input name="description[]" class="form-control">
</label>
{% if (!i && !o.options.autoUpload) { %}
<button class="btn btn-primary start upload-file" disabled>
<i class="glyphicon glyphicon-upload"></i>
<span>Start</span>
</button>
{% } %}
{% if (!i) { %}
<button class="btn btn-warning cancel">
<i class="glyphicon glyphicon-ban-circle"></i>
<span>Cancel</span>
</button>
{% } %}
</td>
</tr>
</form>
{% } %}
</script>
我正努力让它发挥作用。我今天花了很多时间,但不想放弃。如果有人有这方面的经验,请帮助我,给我指导。
我找到了这个,但我无法弄清楚如何让它发挥作用 https://github.com/blueimp/jQuery-File-Upload/wiki/How-to-submit-additional-Form-Data
由于
最诚挚的问候, 达科
答案 0 :(得分:0)
请参阅函数handle_file_upload中的server / php / UploadHandler.php尝试连接到db并在数据库中保存文件详细信息