我在 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);