0

我在 js 中创建了一个 xhr 来将一些数据发送到一个 php 文件。php 文件会将这些数据插入数据库。现在我需要知道自动增加的 ID。我用

echo mysql_insert_id();

获取 php 中的 ID。如何在 javascript 中读取此值?

var xhr = new XMLHttpRequest();

 xhr.open(
         "POST",
         "xxx.php",true
     );
    var postContainer = new Array();
    postContainer.push(
    {
        data1 : value1, 
        data2 : value2,
    });
    var newJ = JSON.stringify(postContainer); 
    xhr.setRequestHeader("Content-type","application/json");
    xhr.send(newJ);  
4

1 回答 1

1

您可以附加一个事件处理程序来侦听该onreadystatechange事件。

xhr.onreadystatechange = function(){
   // check to make sure response finished and status is 200 meaning OK 
   if ( xhr.readyState == 4 && xhr.status == 200 ){
        console.log( xhr.responseText );        
   }
}
于 2012-12-05T21:32:07.473 回答