我正在使用此脚本https://github.com/blueimp/jQuery-File-Upload进行多个文件(图片)上传。它工作得很好,但是我想在表单中添加一个额外的文本框来发布每个文件。在选项中它有一个例子,但我似乎无法让它工作。 https://github.com/blueimp/jQuery-File-Upload/wiki/Options示例是formData: 它似乎是从jQuery使用.tmpl()来填充一些列。它看起来像是使用JSON发布数据。我设法添加了另一个JSON参数,但似乎无法从每个单独的文件上传中获取$ _POST ['desc']。我不确定是否可以在上传中添加文本框。如何为用户上传的每个文件创建唯一的$ _POST var?以下是我正在处理的网站的链接:http://epicplank.com/beta/upload/example/
<script id="template-upload" type="text/x-jquery-tmpl">
<tr class="template-upload{{if error}} ui-state-error{{/if}}">
<td class="preview"></td>
<td class="name">${name}</td>
<td class="size">${sizef}</td>
<td class="desc"><!-- Description Textbox here --></td>
</tr>
感谢任何帮助。