我是jquery和ajax的新手。我正在努力让我的第一个ajax脚本工作,但它不起作用,我需要一些帮助。
我有一个php页面应该发布到另一个php页面,后者将进行一些处理并获取一些文件来压缩和下载。用户需要输入开始和结束日期,第二个PHP脚本将使用此信息来准备数据。这个功能在没有jquery的情况下工作得非常好,但是当我添加jquery时它不起作用。
我想要实现什么?我想在相同的php页面中发帖并在<div></div>
标记中获得帖子输出。
我的第一个php页面包含(downloadPage.php
):
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
<form action="doDownload.php" method="post" id="dateRangeID">
<input id='time1' class='input' name="datefield1" style="text-align:center;"/>
<input id='time2' class='input' name="datefield2" style="text-align:center;"/>
<input type="submit" value="Download Data" name="submit" id="submitButton">
</form>
<div id="result"></div> <!-- I would like it to post the result here //-->
第二页(doDownload.php
),
<div id="content">
<?php
if(isset($_POST['submit']))
{
$dateVal1 = $_POST['datefield1'];
$dateVal2 = $_POST['datefield2'];
if($dateVal1 != $dateVal2)
{
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename="file.zip"');
$fullListOfFiles = $downloadFullTmpFolder.$filesList;
$command = "sudo $ldlib -u myuser /usr/bin/python3 $downloadScriptFile -datadir $gnomeDataDir -time1 $dateVal1C -time2 $dateVal2C -outdir $downloadFullTmpFolder > debug_download.txt 2>&1";
$output = shell_exec($command);
$fp = popen('cat '.$fullListOfFiles.' | sudo -u myuser zip -@ -9 - ', 'r');
$bufsize = 1024;
$buff = '';
while( !feof($fp) )
{
$buff = fread($fp, $bufsize);
echo $buff;
}
pclose($fp);
}
else
{
echo("<p>Dates have to be different in order for the download to start.</p>");
}
}
else
{
echo("<p>Error: Page called without submit.</p>");
}
?>
</div>
最后,downloadPage.php
中的jquery部分,如果我添加它不再起作用(我想学习如何正确操作)和I mainly learned from the manual of jquery,最后一个示例链路)
<script>
/* attach a submit handler to the form */
$("#dateRangeID").submit(
function(event)
{
event.preventDefault();
var $form = $(this),
t1 = $form.find("input[name='datefield1']").val(),
t2 = $form.find("input[name='datefield2']").val(),
subm = $form.find("input[name='submit']").val(),
url = $form.attr('action');
var posting = $.post(url, { datefield1: t1, datefield2: t2, submit: subm} );
/* Put the results in a div */
posting.done(function(data) {
var content = $(data).find('#content'); // <--- So this turns out to be wrong. Right is only $(data);
$("#result").empty().append(content);
});
});
</script>
这有什么问题?请协助。谢谢。
如果您需要任何其他信息,请询问。
答案 0 :(得分:1)
看着显而易见的,你有:
var content = $(data).find('#content');
其中,您尝试在以下某个结果中找到ID为content
的元素:
<p>Dates have to be different in order for the download to start.</p>
或
<p>Error: Page called without submit.</p>