PHP接收Json

时间:2012-02-15 11:09:33

标签: php ajax json knockout.js

我正在使用淘汰赛,我正在尝试向PHP发送信息,使用firebug检查网络 - >标题我有这个:

Request URL:http://localhost/loyalty/welcome/json/
Request Method:POST
Status Code:200 OK
Request Headersview source
Accept:*/*
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Connection:keep-alive
Content-Length:85
Content-Type:application/json
Host:localhost
Origin:http://localhost
Referer:http://localhost/loyalty/
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11
X-Requested-With:XMLHttpRequest
Request Payload
{"friends":[{"name":"name","isOnTwitter":false},{"name":"name","isOnTwitter":false}]}
Response Headersview source
Connection:Keep-Alive
Content-Length:0
Content-Type:text/html
Date:Wed, 15 Feb 2012 11:01:23 GMT
Keep-Alive:timeout=5, max=100
Server:Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1
X-Powered-By:PHP/5.3.8

生成的JSON是:{"friends":[{"name":"name","isOnTwitter":false},{"name":"name","isOnTwitter":false}]},我不知道如何获取这些值。

这是Ajax调用:

save: function() {
        $.ajax({
            url:"http://localhost/loyalty/welcome/json/",
            type: "post",
            data: ko.toJSON(this),
            contentType: "application/json",
            success: function (result) {
                alert(result);
            }
        });

在我的CodeIgniter方法上,我试图用$this->input->post('friends')以及我能想到的任何其他结果来接收它。

4 个答案:

答案 0 :(得分:3)

变化

data: ko.toJSON(this),

data: {mydata : ko.toJSON(this) },

在您在http://localhost/loyalty/welcome/json/

上发帖时打开的文件中

将其读作:

$myObj = json_decode($_POST['mydata']);

然后您可以按以下方式访问您的值:

echo $myObj['friends'][0]['name']; or echo $myObj['friends'][0]['isOnTwitter'];

将在您的json代码读取时输出nametrue/false

修改

这个帖子可以帮到你 - > Jquery - How to make $.post() use contentType=application/json?

答案 1 :(得分:2)

我将Javascript更改为:

$.ajax({
    url:"http://localhost/loyalty/welcome/json/",
    type: "post",
    data: {payload:ko.toJSON(this)},
    success: function (result) {
            t.value = result;
    }
});

然后,在PHP中,您可以通过以下方式访问JSON:

<?php json_decode($_POST["payload"]); ?>

答案 2 :(得分:1)

由于Content-Type是“application / json”而不是“application / x-www-form-urlencoded”,$ _POST数组将为空。

因此,为了在POST请求中访问JSON有效负载,您必须这样做:

$json_data = json_decode(trim(file_get_contents('php://input')), true);    
echo($json_data['param1']);
echo($json_data['param2']);

答案 3 :(得分:0)

要让PHP获取JSON对象,您需要使用json_decode()

http://php.net/manual/en/function.json-decode.php