我已经安装了 blueimp jquery 文件上传并且遇到了一个棘手的问题。
我想在上传文件时获取一个 php 变量,如果它存在,请执行一些 php。
我已经调整了 upload.class.php 来做一些数据库工作并获取我需要的数据。
然后我成功地将它解析回我的前端页面,但只能通过令人兴奋的 ajax 表,例如:
<script id="template-download" type="text/x-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
<tr class="template-download fade">
{% if (file.error) { %}
<td></td>
<td class="name"><span>{%=file.name%}</span></td>
<td class="size"><span>{%=o.formatFileSize(file.size)%}</span></td>
<td class="error" colspan="2"><span class="label label-important"> {%=locale.fileupload.error%}</span> {%=locale.fileupload.errors[file.error] || file.error%}</td>
{% } else { %}
<td class="preview">{%=file.num%}{%=file.product%}{% if (file.thumbnail_url) { %} <a href="{%=file.url%}" title="{%=file.name%}" rel="gallery" download="{%=file.name%}"><img src="{%=file.thumbnail_url%}"></a>
{% } %}</td>
<td class="name">
<a href="{%=file.url%}" title="{%=file.name%}" rel="{%=file.thumbnail_url&&'gallery'%}" download="{%=file.name%}">{%=file.name%}</a>
</td>
<td class="size"><span>{%=o.formatFileSize(file.size)%}</span></td>
<td colspan="2"></td>
{% } %}
<td class="delete">
<button class="btn btn-danger" data-type="{%=file.delete_type%}" data-url="{%=file.delete_url%}">
<i class="icon-trash icon-white"></i>
<span>{%=locale.fileupload.destroy%}</span>
</button>
<input type="checkbox" name="delete" value="1">
</td>
</tr>
{% } %}
</script>
我这样做是为了确保: {%=file.num%}{%=file.product%} 打印出来,并且是从 php 中表达出来的。
所以我想把这些变量放到“模板下载”脚本区域之外的页面上的其他地方触发一个 php 片段。
我可以弄清楚如何做到这一点,如果变量在模板下载脚本标签之外,我什至无法回显它们。
任何帮助将不胜感激我完全迷失在 ajax/javascript 中!