1

我有一个通过 php 输出 json 数据的代理脚本,我希望能够使用 javascript 操作这些数据。我有以下代码,但它只获取 php 脚本输出的整个 json 字符串。如何获取数据并能够访问此 json 数据中的各个对象?

var xmlhttp;
function loadXMLDoc(url, cfunc) {
    if (window.XMLHttpRequest) {
        // code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp = new XMLHttpRequest();
    } else {
        // code for IE6, IE5
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange = cfunc;
    xmlhttp.open("GET", url, true);
    xmlhttp.send();
}

loadXMLDoc("http://xxxxx.appspot.com/userbase_us.php?callback=userdata", function() {
  if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
      var json = xmlhttp.responseText;
      alert(json);
  }
});
4

1 回答 1

5

您可以使用本机JSON.parse方法:

var json = JSON.parse(xmlhttp.responseText);

请注意,由于旧版浏览器不支持此功能,因此您很可能希望对其进行polyfill

于 2012-06-08T10:21:14.143 回答