-1

PHP からすべての json オブジェクトを取得しようとしましたが、うまくいかないようで、そこからデータを取得できません。

JSON:

  [{"courtid":"4","bookingid":"22673","centername":"Copenhagen","time":"8:9","date":"27-8-2013"},{"courtid":"3","bookingid":"22702","centername":"Copenhagen","time":"17:18","date":"27-8-2013"},{"courtid":"4","bookingid":"26422","centername":"Copenhagen","time":"7:9","date":"31-12-2013"},{"courtid":"5","bookingid":"26423","centername":"Copenhagen","time":"7:9","date":"31-12-2013"},{"courtid":"13","bookingid":"26424","centername":"Copenhagen","time":"7:9","date":"31-12-2013"}]

私のjQuery ajax:

$.getJSON("http://f??????dboldfabrikken.dk/api/index.php?module=getAvailableGames",function(msg){
$.each(msg.courtid,function(index,item){
    alert(index + "..."+item);
});
});

交換 ??????自分で試してください。

私は何をしなければなりませんか?

4

3 に答える 3

0

メッセージは配列であるため、配列を反復処理して、配列内のアイテムの個々のプロパティにアクセスします

$.getJSON("http://f??????dboldfabrikken.dk/api/index.php?module=getAvailableGames", function (msgs) {
    $.each(msgs, function (index, item) {
        alert(index + "..." + JSON.stringify(item));// here you can access item.courtid
    });
});
于 2013-08-27T13:11:16.357 に答える
0

このようなことを試してください

    $.getJSON("http://f??????dboldfabrikken.dk/api/index.php?module=getAvailableGames",function(msg){
        $.each(msg,function(index,item){
            alert(index + "..."+item.courtid);
    });
于 2013-08-27T13:11:32.903 に答える
0

クエリからのネットワーク応答を確認しましたか?

どうやら取得するオブジェクトは配列なので、次のようになります。

$.each(msg, function(index, item))

など...

于 2013-08-27T13:12:08.600 に答える