JQuery.getJSON没有提醒json

时间:2013-02-05 22:40:46

标签: javascript jquery json

我目前在localhost中运行:

$.getJSON("http://localhost/call", function(json) {
  alert(json.something);
});

http://localhost/call返回{something:1},但没有任何警报。

1 个答案:

答案 0 :(得分:8)

{something:1}

不是有效的JSON字符串,而是

{"something":1}

如果用

替换你的电话
$.ajax({
    url: 'http://localhost/call',
    dataType: 'json',
    success: function(){},
    error: function(xhr, textStatus, errorThrown){
         //you should get a parse error and end up here
    }
});

你最终应该进入error回调。

在你的php文件中:

header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Content-type: application/json');

$arr = array('something' => 1, 'somethingelse' => 2);

echo json_encode($arr);