PHP服务器无法使用ajax接收javascript对象

时间:2016-03-21 00:17:11

标签: javascript php ajax

您好我正在尝试将我从javascript对象中保存的字段发送到php服务器。我正在使用ajax但是当我尝试在php中接收对象时,我在调试时得到长度为0。基本上我无法接收数据。请问我做错了什么。

Javascript code:
    //fields from from saved in an object.
    var obj={
      'user_name': username,
      'pwd': psswd1,
      'user_email': email,
      'user_phone': mobile,
      'sec_quest1': question1,
      'ans1': answer1,
      'sec_quest2': question2,
      'ans2': answer2,
      'user_address': address,
      'user_userInfo': user_info
  };

   console.log(obj);

   var data = JSON.stringify(obj)
   var xhttp = new XMLHttpRequest();

  xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
//document.getElementById("txtHint").innerHTML = xhttp.responseText;
    alert(xhttp.responseText);
   }
 } 
 xhttp.open("POST", "server.php", true);
 xhttp.setRequestHeader("Content-type", "application/json");
 xhttp.send(data);
}

php代码:

<?php
  $obj = json_decode($_POST["data"]);
 echo 'Name: '.sizeof($obj);
?>

它显示大小为零意味着它没有接收数据。请问我做错了什么

3 个答案:

答案 0 :(得分:2)

您可能会发布原始数据,可以通过这种方式在php中访问

    $obj = json_decode(file_get_contents("php://input"),true);
    // true parameter is used to decode as array
    // you can make it false to use object
    echo $obj["user_name"];

答案 1 :(得分:2)

将JSON发布到服务器时无法访问post变量,因此您需要执行此操作。

$str = file_get_contents('php://input'); //($_POST doesn't work here)
$response = json_decode($str, true);

然后检索字段

$name = $response['user_name'];
$phone = $response['user_phone'];
// etc
// or just $response[0], $response[1], $response[2] etc etc

基本上与上面的techblu3相同,但更详细一点。

答案 2 :(得分:0)

一种解决方案是序列化您的数据,以便您可以使用标题x-www-form-urlencoded发送它。

 serialize = function(obj) {
  var str = [];
  for (var p in obj)
   if (obj.hasOwnProperty(p)) {
    str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
   }
  return str.join("&");
 }
 var obj = {
  'user_name': 'John Doe',
  'user_email': 'john@doe.net',
  'user_phone': '2122221111',
 };

  var params = serialize(obj);
  var url = "https://url.net";


  console.log(params);

  var xhr = new XMLHttpRequest();
  xhr.open("POST", url, true);

  //Send the proper header information along with the request
  xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");

  xhr.send(params);

您的PHP文件将包括

 <?php echo 'Name: '.sizeof($_POST); ?>