gpt4 book ai didi

php - jquery文件上传-使用ajax发布php变量

转载 作者:行者123 更新时间:2023-11-28 09:45:37 25 4
gpt4 key购买 nike

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

最佳答案

在我的斗争中,我越来越多地了解 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>

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

关于php - jquery文件上传-使用ajax发布php变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11821733/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com