我正在尝试通过 Blueimp jquery 文件上传器向 MYSQL 插入额外的表单数据。但我有一些问题。
我正在使用演示设置并将模板上传更改为以下代码(* 我添加了 Notunuz 输入)
<script id="template-upload" type="text/x-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
<tr class="template-upload fade">
<td class="preview"><span class="fade"></span></td>
<td class="title"><label>Notunuz: <input name="title[]"></label></td>
{% if (file.error) { %}
<td class="error" colspan="2"><span class="label label-important">Hata</span> {%=file.error%}</td>
{% } else if (o.files.valid && !i) { %}
<td>
<div class="progress progress-success progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><div class="bar" style="width:0%;"></div></div>
</td>
<td class="start">{% if (!o.options.autoUpload) { %}
<button class="btn btn-primary">
<i class="icon-upload icon-white"></i>
<span>Başlat</span>
</button>
{% } %}</td>
{% } else { %}
<td colspan="2"></td>
{% } %}
</tr>
{% } %}
</script>
- 如何获取额外的表单数据?
- 如何更改
.js
和UploadHandler.php
归档?
我的第二个问题是如何重定向到特定的 URL 上传完成?