0

我正在创建一个 iPhone 应用程序,我需要将它从 PHP 数组转换为 JSON

现在我想知道一旦我在 JSON 格式中拥有它,我如何告诉 javascript 获取所有者 ID

"owner":{"$id":"511e152bd482f6bd1e000000"}

xmlhttp=new XMLHttpRequest();
    xmlhttp.open("POST","http://service.ipetfindr.com/iOS/?uri=fetchpet/" + n[1],false);
    xmlhttp.send();

    var petJSON = JSON.parse(xmlhttp.responseText);
navigator.notification.alert(petJSON[0].owner);

谢谢

编辑

我最终让它工作了

petJSON[0].owner.$id
4

0 回答 0