0

我有一个嵌套的 json,它给了我错误。

JSON:

[{"id":"15",
  "rand_key":"",
  "landlord_name":"Shah",
  "property_req_1":{
    "lead_req_id":"",
    "lead_id":"0",
    "category_id":"1",
    "region_id":"1",
    "area_location_id":"17",
    "sub_area_location_id":"3447",
    "min_beds":"1",
    "max_beds":"",
    "min_budget":"3332",
    "max_budget":"0",
    "min_area":"",
    "max_area":"0",
    "unit_type":"2",
    "unit_no":"",
    "listing_id_1_ref":"RH-R-17",
    "listing_id_1":"17"
  }
}]

代码:

var json=null;
$.getJSON("ajax_files/getSingleRow_leads.php?id="+id, function(json){ 
    json = json[0];

这里alert(json.property_req_1);给我[object Object]

    if(json.property_req_1){

        var getReq = jQuery.parseJSON('['+json.property_req_1+']');
        $.each(getReq, function(id, key) {

在这里拿不到

        });
    }
});

我错过了什么?

4

1 回答 1

0
for (var i = 0; i < json.length; i++) {
    var firstData = json[i];
    for (var j = 0; j < json.property_req_1.length; j++) {
        var data = json.property_req_1[j];        
    }
}
于 2013-04-07T14:57:58.390 回答