这可能是非常简单的事情,我只是让它变得比它必须的更困难。我有一个 php 页面,它只有一个复选框和一个按钮。当我单击按钮时,它应该调用我的“collection.php”页面,然后更新我的索引页面的状态。我在 collection.php 中取出了大部分代码,但我的索引页面仍然没有更新。我究竟做错了什么??提前致谢!
索引.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-gb" xml:lang="en-gb">
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
// Click trigger for image
$("#myBtn").click(function() {
if ($('#update').is(":checked"))
var update = 'on';
else
var update = 'off';
$.ajax({
url: 'collection.php',
type:'POST',
dataType: 'json',
data: 'update='+update,
cache: false,
async: false,
success: function(output_string){
//alert(JSON.stringify(output_string));
$('#collection_status').html(''); // Clear #wines div
$('#collection_status').append(output_string.worked + '<br/>');
}, // End of success function of ajax form
error: function() {
alert("there is an issue with the collection!");
}
}); // End of ajax call
return false; // keeps the page from not refreshing
});
});
</script>
</head>
<body style="background-color:#333333;color:white;font-family:verdana;text-transform:lowercase;">
<form>
<input type="checkbox" id="update" /> Update Existing<br />
<button id="myBtn">Collect</button>
</form>
<br />
<div id="collection_status"></div>
</body>
</html>
集合.php
<?
// movie search variables
$dir = "/video/Movies/";
$movie_extensions = array('mkv','mp4','m4v','avi');
$update_movies = 0;
if(isset($_POST["update"]))
$update_movies = $_POST["update"];
// read contents from $dir
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
$file_info = pathinfo($file);
$output_string['worked'] = 'found <span style="color:yellowgreen;">' . $file . '</span><br />';
echo json_encode($output_string);
}
closedir($dh);
}
}
当我从收集脚本中删除回声部分时,我收到一个响应(下面的作品):
$output_string['worked'] = 'testing';
echo json_encode($output_string);
一旦我将其添加回循环中,它就会出错。
作为测试,我在其中添加了一个 for 循环 - 它也失败了:
for($i=0;$i<10;$i++)
{
$output_string['worked'] = 'found <span style="color:yellowgreen;">' . $file . '</span><br />';
echo json_encode($output_string);
}