1

我正在使用此脚本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>

任何帮助表示赞赏。

4

0 回答 0