PHP没有从Ajax帖子接收JSON

时间:2014-04-30 13:05:56

标签: javascript php ajax json

我正在尝试通过Ajax 向PHP 处理代码发送一些 JSON。这是我的 JavaScript

var j = {"a":"b"};
var xmlhttp;
if (window.XMLHttpRequest){
    xmlhttp = new XMLHttpRequest();
} else {
    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
};
xmlhttp.onreadystatechange = function(){
    if (xmlhttp.readyState==4 && xmlhttp.status==200){
        console.log(xmlhttp.responseText)
    };
};
xmlhttp.open("POST", "server.php", true);
xmlhttp.setRequestHeader("Content-Type", "application/json; charset=utf-8");
xmlhttp.send({
    "json": j
});

PHP

$json = $_POST["json"];
echo $json;

但这与null相呼应。 我做错了什么?这似乎应该有效。谢谢!

请不要jQuery。如果你投票,请告诉我为什么我可以改进。

3 个答案:

答案 0 :(得分:3)

您的j变量是一个对象。在发布之前,您需要将其编码为json字符串。

好的,我已经从头开始重写了我的答案。

更新 server.php ,如下所示:

<?php

// Request Handler
if (count($_POST))
{
    $json = isset($_POST['json']) ? $_POST['json'] : '';
    if (!empty($json))
    {
        $jsonObj = json_decode($json);
        print_r($jsonObj);
    }
    else
    {
        echo "No json string detected";
    }
    exit();
}

?>

更改你的ajax请求:

<script type="text/javascript">

var j = {"a":"b"};

var xmlHttp = new XMLHttpRequest();
var parameters = "json="+ encodeURIComponent(JSON.stringify(j));
xmlHttp.open("POST", "server.php", true);

xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlHttp.setRequestHeader("Content-length", parameters.length);
xmlHttp.setRequestHeader("Connection", "close");

xmlHttp.onreadystatechange = function() {
    if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
        console.log(xmlHttp.responseText);
    }
}

xmlHttp.send(parameters)

</script>

以下是它的工作演示:

enter image description here


因此,在PHP脚本中,我正在打印$jsonObj及其内容。如果你想在你的脚本中使用它;你这样做:

e.g。

<?php

if ($jsonObj->a == 'b') {
    // do something ?
}

?>

如果要使用关联数组(而不是对象),可以执行以下操作:

更改:$jsonObj = json_decode($json);收件人:$jsonObj = json_decode($json, true);

现在你可以这样做:

<?php

if ($jsonObj['a'] == 'b') {
    // do something ?
}

?>

答案 1 :(得分:0)

Javascipt:

encode en JSON  with JSON.stringify(j);

如果j包含&amp;在字符串中而不是分隔符数据:

j.split("&").join("%26");

在php中

$json = $_REQUEST['json'];
$json = str_replace("%26","&",$jsonData);
$json = html_entity_decode($json,ENT_NOQUOTES,'UTF-8');
$data = json_decode($json,true);

json的值作为数据数组。

答案 2 :(得分:0)

要正确提交JSON,它必须是:

xmlhttp.send(JSON.stringify({"json": j});

然后是PHP:

$json = json_decode(file_get_contents('php://input'));

问题在于,当发送JSON时(如果它是一个正确的JSON请求),PHP不会自动解析它。