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