1

我已经安装了 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 中!

4

2 回答 2

0

修复:在 js 中调用页面时传递变量,例如:

var nocacheurl = url+"?t="+timestamp+"&some_variable="+variable;

不确定这是否是最好的方法,但我的 php 现在获取 $_REQUEST 变量并按预期工作。

于 2012-08-06T13:12:53.507 回答
0

在我的斗争中,我越来越多地了解 Ajax/Js 并设法创建了一个更新的 div :) 但是我仍然在努力将变量从 js 传递到 php,反之亦然!

我有一个 $_REQUEST["some_variable"]; 在我的页面顶部我如何从 js div 调用它?

我的负载 div 是

$variable=$_REQUEST["some_variable"];
<script src="/js/myjsscript"></script>

<div class="container">
<script type="text/javascript">

refreshdiv();</script>
<div id="productdiv"></div>

我试过了

   `refreshdiv(<? echo $variable ?>);` 

从长远来看(我不知道我在 js 中做什么,并且仍然在 php 大脑上工作,期望它能够工作。学习非常缓慢:))但这不起作用。

更新

只是尝试了以下,而不是从外部 js 文件调用 php

$variable=$_REQUEST["some_variable"];
<script src="/js/myjsscript"></script>

<div class="container">
<script type="text/javascript">
var seconds = 10;
var divid = "productdiv";
var url = "/ajaxcall_script.php?some_varaible=<? echo $variable ?>";

refreshdiv();</script>
<div id="productdiv"></div>

它在源代码中打印出来,所以我知道变量是好的。但是 $_REQUEST["some_varaible"] 没有在 php 中获取变量?

于 2012-08-06T11:32:17.430 回答