为什么这个AJAX功能不能正常工作?

时间:2011-12-30 17:53:36

标签: php javascript mysql ajax

我写了一个简单的应用程序,显示一份工作候选人列表,然后,点击一个雇用按钮,应该改变数据库以反映新雇用的候选人,并将其余的显示为未雇用。但是,该功能无法正常工作。我遇到的问题是AJAX函数似乎永远不会提供响应,我无法弄清楚为什么。数据库也没有得到更新。我的文件在下面。

document.getElementById("errors").innerHTML+=xmlhttp.readyState+" "+xmlhttp.status+"<br>";正在更新html页面底部的div,显示readyState为4,status为200,这意味着AJAX功能正确返回,但未显示echo'd响应。即使我从new_hire.php文件中删除所有代码并只创建文件echo "hello";responseText中也不会返回任何内容。

resumes.php:

<html>

<head>

<script type="text/javascript">
function new_hire(name){
  var xmlhttp;
  if (window.XMLHttpRequest){
    xmlhttp=new XMLHttpRequest();
  }
  else{
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }

  xmlhttp.onreadystatechange=function(){
    document.getElementById("errors").innerHTML+=xmlhttp.readyState+" "+xmlhttp.status+"<br>";

    //this line, when removed, does not change anything. I left it in for debugging purposes.
    document.getElementById("errors").innerHTML+=xmlhttp.responseText;

    if (xmlhttp.readyState=4 && xmlhttp.status=200){

      var others = xmlhttp.responseText.split("|");

      for (i=0;i<others.length;i++){
        tag = others[i].replace(" ","_");

        document.getElementById(tag).innerHTML="";
      }
    } 
  }

  xmlhttp.open("POST","new_hire.php",true);
  xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
  xmlhttp.send("hiree="+name.replace(" ","%20")+"&position=Salespeople");

  var name_tag = name.replace(" ","_");

  document.getElementById(name_tag).innerHTML="(Current Employee)<br>";
}
</script>

</head>

...

</html>

new_hire.php(AJAX响应文件):

<?php

$hiree = $_POST['hiree'];
$pos = $_POST['position'];


$con = mysql_connect("host.name","user","pass") or die('Could not connect: ' . mysql_error());
mysql_select_db("dbname",$con);

$clear = mysql_query("UPDATE $pos SET employed=false WHERE 1=1;");
mysql_fetch_array($clear);

$reset = mysql_query("UPDATE $pos SET employed=true WHERE Name='$hiree';");
mysql_fetch_array($reset);

$people = mysql_query("SELECT Name FROM $pos WHERE employed=false;");
$array = array();

while ($row = mysql_fetch_array($people)){
    array_push($array,$row['Name']);
}

mysql_close($con);

$response = join("|",$array);
echo $response;

?>

1 个答案:

答案 0 :(得分:1)

请注意,您的if语句未使用比较运算符==,而是使用赋值运算符=,因此您使用的是:if (xmlhttp.readyState=4 && xmlhttp.status=200)而不是if (xmlhttp.readyState==4 && xmlhttp.status==200)