MongoDB - JSON“所有者”:{“$ id”:“511e152bd482f6bd1e000000”}

时间:2013-03-02 16:55:36

标签: javascript json mongodb cordova jsonp

我正在创建一个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

0 个答案:

没有答案