使用getJSON函数读取while循环数据

时间:2015-07-14 09:05:16

标签: javascript jquery arrays getjson

<?
    while ($row_previous_bill = $res_previous_bill->fetchRow()) { 
        $bill = $row_previous_bill[6];
        $bill_2 = $row_previous_bill[2];
        $bill_3 = $row_previous_bill[3];
        $bill_4 = $row_previous_bill[1];
        $hotspot_location = $row_previous_bill[5];
        $data[] = array("result_paid" => $bill, "err_code" => 0, "result_payment_details" => $bill_3, "result_time" => $bill_4, "result_location" => $hotspot_location);
    }

    $name = array("response" => $data);
    //sets the response format type
    header("Content-Type: application/json");
    //converts any PHP type to JSON string
    echo json_encode($name);
?>

我使用上面的while循环来获取JSON格式,然后使用此

$(function() {
    //Set Url of JSON data. make sure callback is set   with a '?' to overcome the cross domain problems with JSON
    var url = "http://127.0.0.1/olem.app/tab/api/js_on.php?get=json&subscribers=incomplete";
    //Use jQuery getJSON method to fetch the data from the url and then create our unordered list with the relevant data.$(username)
    $.getJSON(url,function(json){
        var html = "" + json.result_paid + "";
        //A little animation once fetched
        $('#js_inc_month').animate({ opacity: 0 }, 5, function(){
            $('#js_inc_month').html(html);  
        });
        $('#js_inc_month').animate({ opacity: 1 }, 5);
    });
});

要显示<div id="js_inc_month"></div>到目前为止我未定义,我该如何扭转这个

1 个答案:

答案 0 :(得分:0)

因此:

$name = array("response" => $data);

您必须访问以下数据:

json.response[0].result_paid

如果有什么不清楚你可以简单地说:

console.log(json)

在响应中看看收到的对象是怎样的。