我目前在localhost中运行:
$.getJSON("http://localhost/call", function(json) {
alert(json.something);
});
http://localhost/call
返回{something: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);