从 PHP 获取 JSON 时遇到问题。下面的代码是有效的:
[{
"vehicleId": "1",
"status": "Running",
"position": "x",
"battery": "25",
"distanceTravelled": "123",
"destination": "y",
"freeSeats": "2",
"speed": "32"
}
]
但是,我的代码的新版本就是这样(数字值中没有引号),它给出了一个解析 Json 错误,它没有显示任何内容。
[{
"vehicleId": 1,
"status": "Running",
"position": "x",
"battery": 25,
"distanceTravelled": 123,
"destination": "y",
"freeSeats": 2,
"speed": 32
}
]
我在 jsonlint.com 上检查了格式,它是有效的。Eclipse中的日志错误是:
05-09 21:37:25.536: E/Web Console(336): SyntaxError: Unable to parse JSON string at file:///android_asset/www/MobileMan.js:37
34 xmlhttp.open("GET",url,false);
35 xmlhttp.send();
36 var json = xmlhttp.responseText;
37 obj = JSON.parse(json);
我还在 Chrome 上的计算机上尝试了 Javascript 代码,一切正常。我无法解决问题。感谢您的回答。