在JS中循环访问JSON

时间:2016-04-09 10:26:26

标签: javascript json loops

我有一个json文件,需要访问/循环一些属性。

使用下面的代码,我只在我的控制台中收到“ Object {dish:array [1],price:Array [1],restaurant:Array [1]} ”而不是全部162组数组中的元素。

具体到我需要的东西:我想在组阵列中打印出每个DISH,PRICE,RESTAURANT属性!

我的JS看起来像这样:

$(document).ready(function update() {
    var xhr = new XMLHttpRequest();
    xhr.onreadystatechange = function() {
       if(xhr.readyState === 4) {
        var jsonData = JSON.parse(xhr.responseText);

        for(var i=0; i< jsonData.result.extractorData.data[0].group.length; i+=1) {
          var statusHTML = jsonData.result.extractorData.data[0].group[i];
        }
        console.log(statusHTML);
         statusHTML += '</ul>';
         document.getElementById('ajax').innerHTML = statusHTML;
       }
    };

    xhr.open('GET', 'data/restaurantquery.json');

    xhr.send();
    setTimeout(update, 5000);
});

我的json看起来像:

{
"extractorData": {
    "url": "www.site.com",
    "resourceId": "myid",
    "data": [{
        "group": [{
            "dish": [{
                "text": "Panini Caprese"
            }],
            "price": [{
                "text": "3,60 €"
            }],
            "restaurant": [{
                "text": "Deine Rezept Galerie"
            }]
        }, {
            "dish": [{
                "text": "Reisgericht"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Eat Drink Man Woman"
            }]
        }, {
            "dish": [{
                "text": "Chicken Curry"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "La Bamboo"
            }]
        }, {
            "dish": [{
                "text": "Flammkuchen Bruschetta"
            }],
            "price": [{
                "text": "5,00 €"
            }],
            "restaurant": [{
                "text": "Deine Rezept Galerie"
            }]
        }, {
            "dish": [{
                "text": "Gyros"
            }],
            "price": [{
                "text": "7,50 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Mittagessen"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Ceylonas Restaurant"
            }]
        }, {
            "dish": [{
                "text": "Mittagessen vegetarisch"
            }],
            "price": [{
                "text": "6,00 €"
            }],
            "restaurant": [{
                "text": "Ceylonas Restaurant"
            }]
        }, {
            "dish": [{
                "text": "Cornflakesschnitzel von der Pute"
            }],
            "price": [{
                "text": "8,50 €"
            }],
            "restaurant": [{
                "text": "Zadu Cafe & Restaurant"
            }]
        }, {
            "dish": [{
                "text": "Tagliatelle"
            }],
            "price": [{
                "text": "7,90 €"
            }],
            "restaurant": [{
                "text": "Cafe Chiquilin"
            }]
        }, {
            "dish": [{
                "text": "Fischfilet paniert"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Der Metzger Schneider"
            }]
        }, {
            "dish": [{
                "text": "Zigeuner Gulasch"
            }],
            "price": [{
                "text": "5,80 €"
            }],
            "restaurant": [{
                "text": "Der Metzger Schneider"
            }]
        }, {
            "dish": [{
                "text": "Kartoffel-Lauch-Gratin"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Cafe Chiquilin"
            }]
        }, {
            "dish": [{
                "text": "Kartoffelsuppe"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Augustin"
            }]
        }, {
            "dish": [{
                "text": "Kresse Rahmsuppe"
            }],
            "price": [{
                "text": "4,50 €"
            }],
            "restaurant": [{
                "text": "Feinkosterei Weller"
            }]
        }, {
            "dish": [{
                "text": "Süßkartoffel-Birnen-Sambal Oelek-Creme Suppe"
            }],
            "price": [{
                "text": "4,20 €"
            }],
            "restaurant": [{
                "text": "Lumen"
            }]
        }, {
            "dish": [{
                "text": "Asiatischer Glasnudelsalat"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Lumen"
            }]
        }, {
            "dish": [{
                "text": "Nudeln"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "La Piccola Napoli"
            }]
        }, {
            "dish": [{
                "text": "Aubergine"
            }],
            "price": [{
                "text": "7,30 €"
            }],
            "restaurant": [{
                "text": "Sultan Saray"
            }]
        }, {
            "dish": [{
                "text": "Gemischtes Gemüse"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Sultan Saray"
            }]
        }, {
            "dish": [{
                "text": "Ratatouille-Quiche"
            }],
            "price": [{
                "text": "8,50 €"
            }],
            "restaurant": [{
                "text": "Restaurant Lässig"
            }]
        }, {
            "dish": [{
                "text": "Calamares"
            }],
            "price": [{
                "text": "6,95 €"
            }],
            "restaurant": [{
                "text": "Allgäuer Stüble"
            }]
        }, {
            "dish": [{
                "text": "Forellenfilet"
            }],
            "price": [{
                "text": "7,40 €"
            }],
            "restaurant": [{
                "text": "Alte Wache"
            }]
        }, {
            "dish": [{
                "text": "Frisches Seelachsfilet paniert"
            }],
            "price": [{
                "text": "8,95 €"
            }],
            "restaurant": [{
                "text": "Allgäuer Stüble"
            }]
        }, {
            "dish": [{
                "text": "Lachs"
            }],
            "price": [{
                "text": "8,90 €"
            }],
            "restaurant": [{
                "text": "La Piccola Napoli"
            }]
        }, {
            "dish": [{
                "text": "Lachsfilet gerollt"
            }],
            "price": [{
                "text": "7,50 €"
            }],
            "restaurant": [{
                "text": "Sultan Saray"
            }]
        }, {
            "dish": [{
                "text": "Paniertes Fischfilet"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Feinkosterei Weller"
            }]
        }, {
            "dish": [{
                "text": "Pasta Frutti di Mare"
            }],
            "price": [{
                "text": "7,70 €"
            }],
            "restaurant": [{
                "text": "Lumen"
            }]
        }, {
            "dish": [{
                "text": "Schollen-Spinatröllchen"
            }],
            "price": [{
                "text": "12,50 €"
            }],
            "restaurant": [{
                "text": "Restaurant Lässig"
            }]
        }, {
            "dish": [{
                "text": "\"Hawaii Burger\" 180 Gr Rinderhack belegt"
            }],
            "price": [{
                "text": "7,60 €"
            }],
            "restaurant": [{
                "text": "Wirtshaus zum Hotzenplotz"
            }]
        }, {
            "dish": [{
                "text": "Farfalle Bolognese"
            }],
            "price": [{
                "text": "4,90 €"
            }],
            "restaurant": [{
                "text": "Il Pomodoro"
            }]
        }, {
            "dish": [{
                "text": "Thai-Fleischpfanne"
            }],
            "price": [{
                "text": "5,99 €"
            }],
            "restaurant": [{
                "text": "Naturgut Hölderlinplatz"
            }]
        }, {
            "dish": [{
                "text": "Hähnchenschenkel"
            }],
            "price": [{
                "text": "7,40 €"
            }],
            "restaurant": [{
                "text": "Wohnzimmer"
            }]
        }, {
            "dish": [{
                "text": "Paniertes Hühnerfleisch"
            }],
            "price": [{
                "text": "5,00 €"
            }],
            "restaurant": [{
                "text": "Lin's Wok"
            }]
        }, {
            "dish": [{
                "text": "Sesam Semmelknödel"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Lumen"
            }]
        }, {
            "dish": [{
                "text": "Kartoffelsahnegratin"
            }],
            "price": [{
                "text": "6,00 €"
            }],
            "restaurant": [{
                "text": "Feinkosterei Weller"
            }]
        }, {
            "dish": [{
                "text": "Zucchini-Eintopf"
            }],
            "price": [{
                "text": "4,99 €"
            }],
            "restaurant": [{
                "text": "Naturgut Hölderlinplatz"
            }]
        }, {
            "dish": [{
                "text": "Wokgericht"
            }],
            "price": [{
                "text": "7,50 €"
            }],
            "restaurant": [{
                "text": "Feinkosterei Weller"
            }]
        }, {
            "dish": [{
                "text": "Rinderschmorbraten"
            }],
            "price": [{
                "text": "8,30 €"
            }],
            "restaurant": [{
                "text": "Lumen"
            }]
        }, {
            "dish": [{
                "text": "Gemüse-Minestrone"
            }],
            "price": [{
                "text": "4,50 €"
            }],
            "restaurant": [{
                "text": "Cafe Chiquilin"
            }]
        }, {
            "dish": [{
                "text": "Gebratene Nudeln"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Kwan Kao"
            }]
        }, {
            "dish": [{
                "text": "Frühlingssalat"
            }],
            "price": [{
                "text": "7,50 €"
            }],
            "restaurant": [{
                "text": "Cafe Chiquilin"
            }]
        }, {
            "dish": [{
                "text": "Hausgemachter Hamburger"
            }],
            "price": [{
                "text": "7,80 €"
            }],
            "restaurant": [{
                "text": "Cafe Chiquilin"
            }]
        }, {
            "dish": [{
                "text": "Ente gebraten"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Kwan Kao"
            }]
        }, {
            "dish": [{
                "text": "Hähnchen"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Kwan Kao"
            }]
        }, {
            "dish": [{
                "text": "Tofu gebraten"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Kwan Kao"
            }]
        }, {
            "dish": [{
                "text": "Flädlesuppe"
            }],
            "price": [{
                "text": "3,80 €"
            }],
            "restaurant": [{
                "text": "Wohnzimmer"
            }]
        }, {
            "dish": [{
                "text": "Grünkohlsuppe"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Bella Italia Weine"
            }]
        }, {
            "dish": [{
                "text": "Hausgemachte Kartoffelsuppe"
            }],
            "price": [{
                "text": "4,50 €"
            }],
            "restaurant": [{
                "text": "Sutsche"
            }]
        }, {
            "dish": [{
                "text": "Kartoffelsuppe"
            }],
            "price": [{
                "text": "4,80 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Minestrone vom Rind"
            }],
            "price": [{
                "text": "4,90 €"
            }],
            "restaurant": [{
                "text": "Ampulle"
            }]
        }, {
            "dish": [{
                "text": "Bavette"
            }],
            "price": [{
                "text": "9,50 €"
            }],
            "restaurant": [{
                "text": "Bella Italia Weine"
            }]
        }, {
            "dish": [{
                "text": "Kurze Nudeln"
            }],
            "price": [{
                "text": "7,00 €"
            }],
            "restaurant": [{
                "text": "Ristorante Cavallino"
            }]
        }, {
            "dish": [{
                "text": "Lange Nudeln"
            }],
            "price": [{
                "text": "8,50 €"
            }],
            "restaurant": [{
                "text": "Ristorante Cavallino"
            }]
        }, {
            "dish": [{
                "text": "Pasta Napoli"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Pasta Pomodoro"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Zadu Cafe & Restaurant"
            }]
        }, {
            "dish": [{
                "text": "Penne"
            }],
            "price": [{
                "text": "9,50 €"
            }],
            "restaurant": [{
                "text": "Bella Italia Weine"
            }]
        }, {
            "dish": [{
                "text": "Rigatoni \"Syrakusa\""
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Rote Kapelle"
            }]
        }, {
            "dish": [{
                "text": "Schinkennudeln"
            }],
            "price": [{
                "text": "6,80 €"
            }],
            "restaurant": [{
                "text": "Sutsche"
            }]
        }, {
            "dish": [{
                "text": "Schinkennudeln"
            }],
            "price": [{
                "text": "7,20 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Spiral-Nudeln"
            }],
            "price": [{
                "text": "8,00 €"
            }],
            "restaurant": [{
                "text": "Ristorante Cavallino"
            }]
        }, {
            "dish": [{
                "text": "Gnocchi"
            }],
            "price": [{
                "text": "8,50 €"
            }],
            "restaurant": [{
                "text": "Ampulle"
            }]
        }, {
            "dish": [{
                "text": "Pizza nach Wahl"
            }],
            "price": [{
                "text": "8,00 €"
            }],
            "restaurant": [{
                "text": "Ristorante Cavallino"
            }]
        }, {
            "dish": [{
                "text": "Pizza nach Wahl"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "La Piccola Napoli"
            }]
        }, {
            "dish": [{
                "text": "Blattsalate"
            }],
            "price": [{
                "text": "8,50 €"
            }],
            "restaurant": [{
                "text": "Wohnzimmer"
            }]
        }, {
            "dish": [{
                "text": "Bunter gemischter Salatteller"
            }],
            "price": [{
                "text": "7,20 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Bunter Salatteller"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Zadu Cafe & Restaurant"
            }]
        }, {
            "dish": [{
                "text": "Bunter Salatteller"
            }],
            "price": [{
                "text": "7,50 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Bunter Salatteller"
            }],
            "price": [{
                "text": "8,90 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Bunter Salatteller"
            }],
            "price": [{
                "text": "8,90 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Gemischter Salat"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Sutsche"
            }]
        }, {
            "dish": [{
                "text": "Gemischter Salat"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Sutsche"
            }]
        }, {
            "dish": [{
                "text": "Gemischter Salat"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Sutsche"
            }]
        }, {
            "dish": [{
                "text": "Gemischter Salat"
            }],
            "price": [{
                "text": "6,00 €"
            }],
            "restaurant": [{
                "text": "Rote Kapelle"
            }]
        }, {
            "dish": [{
                "text": "Gemischter Salat"
            }],
            "price": [{
                "text": "6,00 €"
            }],
            "restaurant": [{
                "text": "Rote Kapelle"
            }]
        }, {
            "dish": [{
                "text": "Großer gemischter Salat"
            }],
            "price": [{
                "text": "8,50 €"
            }],
            "restaurant": [{
                "text": "Ristorante Cavallino"
            }]
        }, {
            "dish": [{
                "text": "Rucola-Eissalat"
            }],
            "price": [{
                "text": "12,50 €"
            }],
            "restaurant": [{
                "text": "Ampulle"
            }]
        }, {
            "dish": [{
                "text": "Salat"
            }],
            "price": [{
                "text": "8,50 €"
            }],
            "restaurant": [{
                "text": "Bella Italia Weine"
            }]
        }, {
            "dish": [{
                "text": "Sommerlicher Salat"
            }],
            "price": [{
                "text": "6,00 €"
            }],
            "restaurant": [{
                "text": "Rote Kapelle"
            }]
        }, {
            "dish": [{
                "text": "Auberginen überbacken"
            }],
            "price": [{
                "text": "6,60 €"
            }],
            "restaurant": [{
                "text": "Sutsche"
            }]
        }, {
            "dish": [{
                "text": "Gemüserolle Süß/sauer/scharf"
            }],
            "price": [{
                "text": "8,50 €"
            }],
            "restaurant": [{
                "text": "Restaurant Rösch"
            }]
        }, {
            "dish": [{
                "text": "Chilli con Carne"
            }],
            "price": [{
                "text": "7,50 €"
            }],
            "restaurant": [{
                "text": "Rote Kapelle"
            }]
        }, {
            "dish": [{
                "text": "Gegrillter Putenbrustspieß"
            }],
            "price": [{
                "text": "8,90 €"
            }],
            "restaurant": [{
                "text": "Ampulle"
            }]
        }, {
            "dish": [{
                "text": "Geschmorte Hähnchenschenkel"
            }],
            "price": [{
                "text": "9,50 €"
            }],
            "restaurant": [{
                "text": "Ampulle"
            }]
        }, {
            "dish": [{
                "text": "Puten-Gyros"
            }],
            "price": [{
                "text": "8,20 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Putenbrust-Filet"
            }],
            "price": [{
                "text": "9,00 €"
            }],
            "restaurant": [{
                "text": "Ristorante Cavallino"
            }]
        }, {
            "dish": [{
                "text": "Putenschaschlik"
            }],
            "price": [{
                "text": "6,80 €"
            }],
            "restaurant": [{
                "text": "Sutsche"
            }]
        }, {
            "dish": [{
                "text": "Ein paniertes Schnitzel vom Schwein"
            }],
            "price": [{
                "text": "7,90 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Rahm-Schnitzel"
            }],
            "price": [{
                "text": "7,95 €"
            }],
            "restaurant": [{
                "text": "Allgäuer Stüble"
            }]
        }, {
            "dish": [{
                "text": "Schnitzel \"Wienerart\" vom schwäbisch Hällischem Schweinerücken"
            }],
            "price": [{
                "text": "7,40 €"
            }],
            "restaurant": [{
                "text": "Alte Wache"
            }]
        }, {
            "dish": [{
                "text": "Schweineschnitzel-Putenschnitzel paniert"
            }],
            "price": [{
                "text": "5,95 €"
            }],
            "restaurant": [{
                "text": "Allgäuer Stüble"
            }]
        }, {
            "dish": [{
                "text": "Vegetarisches Schnitzel oder Cordon Bleu"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Allgäuer Stüble"
            }]
        }, {
            "dish": [{
                "text": "Spinat-Tortellini"
            }],
            "price": [{
                "text": "7,40 €"
            }],
            "restaurant": [{
                "text": "Alte Wache"
            }]
        }, {
            "dish": [{
                "text": "Tortellini"
            }],
            "price": [{
                "text": "7,90 €"
            }],
            "restaurant": [{
                "text": "Ampulle"
            }]
        }, {
            "dish": [{
                "text": "Hausgemachte Kässpätzle"
            }],
            "price": [{
                "text": "7,40 €"
            }],
            "restaurant": [{
                "text": "Sutsche"
            }]
        }, {
            "dish": [{
                "text": "Käs'spätzle"
            }],
            "price": [{
                "text": "8,20 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Spätzlepfanne"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Rinderbäckchen"
            }],
            "price": [{
                "text": "12,90 €"
            }],
            "restaurant": [{
                "text": "Wohnzimmer"
            }]
        }, {
            "dish": [{
                "text": "Steak Frites"
            }],
            "price": [{
                "text": "8,00 €"
            }],
            "restaurant": [{
                "text": "Rote Kapelle"
            }]
        }, {
            "dish": [{
                "text": "Steak vom Grill"
            }],
            "price": [{
                "text": "14,50 €"
            }],
            "restaurant": [{
                "text": "Bella Italia Weine"
            }]
        }, {
            "dish": [{
                "text": "Falafel"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Rote Kapelle"
            }]
        }, {
            "dish": [{
                "text": "Frischer Obstsalat"
            }],
            "price": [{
                "text": "4,00 €"
            }],
            "restaurant": [{
                "text": "Rote Kapelle"
            }]
        }, {
            "dish": [{
                "text": "Gemüseauflauf"
            }],
            "price": [{
                "text": "6,20 €"
            }],
            "restaurant": [{
                "text": "Sutsche"
            }]
        }, {
            "dish": [{
                "text": "Kartoffel-Lauch-Gratin"
            }],
            "price": [{
                "text": "7,90 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Kartoffelgratin"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Zadu Cafe & Restaurant"
            }]
        }, {
            "dish": [{
                "text": "Glas Sekt"
            }],
            "price": [{
                "text": "4,50 €"
            }],
            "restaurant": [{
                "text": "Wohnzimmer"
            }]
        }, {
            "dish": [{
                "text": "Linsen"
            }],
            "price": [{
                "text": "7,40 €"
            }],
            "restaurant": [{
                "text": "Sutsche"
            }]
        }, {
            "dish": [{
                "text": "Linsen"
            }],
            "price": [{
                "text": "8,50 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Mexikanische Linsensuppe"
            }],
            "price": [{
                "text": "4,50 €"
            }],
            "restaurant": [{
                "text": "Rote Kapelle"
            }]
        }, {
            "dish": [{
                "text": "Eine geschmälzte Maultasche"
            }],
            "price": [{
                "text": "8,20 €"
            }],
            "restaurant": [{
                "text": "Lichtblick"
            }]
        }, {
            "dish": [{
                "text": "Geröstete Maultaschen"
            }],
            "price": [{
                "text": "7,50 €"
            }],
            "restaurant": [{
                "text": "Zadu Cafe & Restaurant"
            }]
        }, {
            "dish": [{
                "text": "Geröstete Maultaschen"
            }],
            "price": [{
                "text": "7,10 €"
            }],
            "restaurant": [{
                "text": "Sutsche"
            }]
        }, {
            "dish": [{
                "text": "Hausgemachte Maultaschen geschmelzt"
            }],
            "price": [{
                "text": "7,60 €"
            }],
            "restaurant": [{
                "text": "Sutsche"
            }]
        }, {
            "dish": [{
                "text": "Hot Wok"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Rote Kapelle"
            }]
        }, {
            "dish": [{
                "text": "Fischfilet Weißweinsoße Gemüseblättchen"
            }],
            "price": [{
                "text": "9,90 €"
            }],
            "restaurant": [{
                "text": "Restaurant Rösch"
            }]
        }, {
            "dish": [{
                "text": "Fleischküchle"
            }],
            "price": [{
                "text": "8,90 €"
            }],
            "restaurant": [{
                "text": "Restaurant Rösch"
            }]
        }, {
            "dish": [{
                "text": "Linseneintopf"
            }],
            "price": [{
                "text": "8,50 €"
            }],
            "restaurant": [{
                "text": "Restaurant Rösch"
            }]
        }, {
            "dish": [{
                "text": "Maultaschen"
            }],
            "price": [{
                "text": "10,50 €"
            }],
            "restaurant": [{
                "text": "Restaurant Rösch"
            }]
        }, {
            "dish": [{
                "text": "Gebratene Reisnudeln"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Pho Viet"
            }]
        }, {
            "dish": [{
                "text": "Gebratenes Reisnudeln"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Eat Drink Man Woman"
            }]
        }, {
            "dish": [{
                "text": "Nudelgericht"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Eat Drink Man Woman"
            }]
        }, {
            "dish": [{
                "text": "Gemischter Salat"
            }],
            "price": [{
                "text": "7,90 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Gemischter Salat"
            }],
            "price": [{
                "text": "9,00 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Oktopus-Salat"
            }],
            "price": [{
                "text": "12,00 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Gemüse Curry"
            }],
            "price": [{
                "text": "5,90 €"
            }],
            "restaurant": [{
                "text": "La Bamboo"
            }]
        }, {
            "dish": [{
                "text": "Omlett"
            }],
            "price": [{
                "text": "6,00 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Panini Parma"
            }],
            "price": [{
                "text": "4,00 €"
            }],
            "restaurant": [{
                "text": "Deine Rezept Galerie"
            }]
        }, {
            "dish": [{
                "text": "Vegetarisches Kottu Rotti"
            }],
            "price": [{
                "text": "5,90 €"
            }],
            "restaurant": [{
                "text": "La Bamboo"
            }]
        }, {
            "dish": [{
                "text": "Moussaka"
            }],
            "price": [{
                "text": "9,00 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Omlett"
            }],
            "price": [{
                "text": "6,00 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Mittagessen"
            }],
            "price": [{
                "text": "7,50 €"
            }],
            "restaurant": [{
                "text": "Ceylonas Restaurant"
            }]
        }, {
            "dish": [{
                "text": "Mittagessen"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Ceylonas Restaurant"
            }]
        }, {
            "dish": [{
                "text": "Pangasius Filet"
            }],
            "price": [{
                "text": "9,00 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Saganaki"
            }],
            "price": [{
                "text": "12,00 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Saganaki"
            }],
            "price": [{
                "text": "9,00 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Bifteki"
            }],
            "price": [{
                "text": "9,00 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Rindfleisch"
            }],
            "price": [{
                "text": "8,50 €"
            }],
            "restaurant": [{
                "text": "La Bamboo"
            }]
        }, {
            "dish": [{
                "text": "Rumpsteak"
            }],
            "price": [{
                "text": "12,50 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Souvlaki"
            }],
            "price": [{
                "text": "7,50 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Chicken"
            }],
            "price": [{
                "text": "8,50 €"
            }],
            "restaurant": [{
                "text": "La Bamboo"
            }]
        }, {
            "dish": [{
                "text": "Gebratene Reis"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Eat Drink Man Woman"
            }]
        }, {
            "dish": [{
                "text": "Im Wok geschwenktes Huhn"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Pho Viet"
            }]
        }, {
            "dish": [{
                "text": "Im Wok geschwenktes Huhn"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Pho Viet"
            }]
        }, {
            "dish": [{
                "text": "Im Wok geschwenktes Huhn"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Pho Viet"
            }]
        }, {
            "dish": [{
                "text": "Im Wok geschwenktes Huhn"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Pho Viet"
            }]
        }, {
            "dish": [{
                "text": "Im Wok geschwenktes Huhn"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Pho Viet"
            }]
        }, {
            "dish": [{
                "text": "Im Wok geschwenktes Huhn"
            }],
            "price": [{
                "text": "6,50 €"
            }],
            "restaurant": [{
                "text": "Pho Viet"
            }]
        }, {
            "dish": [{
                "text": "Mittagessen"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Ceylonas Restaurant"
            }]
        }, {
            "dish": [{
                "text": "Schnitzel"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "La Bamboo"
            }]
        }, {
            "dish": [{
                "text": "Schnitzel paniert"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Taverne Diogenes"
            }]
        }, {
            "dish": [{
                "text": "Mittagessen"
            }],
            "price": [{
                "text": "6,90 €"
            }],
            "restaurant": [{
                "text": "Ceylonas Restaurant"
            }]
        }, {
            "dish": [{
                "text": "Flammkuchen Klassisch"
            }],
            "price": [{
                "text": "5,00 €"
            }],
            "restaurant": [{
                "text": "Deine Rezept Galerie"
            }]
        }, {
            "dish": [{
                "text": "Flammkuchen süß"
            }],
            "price": [{
                "text": "4,50 €"
            }],
            "restaurant": [{
                "text": "Deine Rezept Galerie"
            }]
        }, {
            "dish": [{
                "text": "Flammkuchen Ziegenkäse"
            }],
            "price": [{
                "text": "6,00 €"
            }],
            "restaurant": [{
                "text": "Deine Rezept Galerie"
            }]
        }]
    }]
},
"pageData": {
    "statusCode": 200,
    "timestamp": 1460111085461
}
}

1 个答案:

答案 0 :(得分:2)

您总是将statusHTML分配给循环的当前迭代,并且永远不会连接结果。把它改成这样的东西:

var statusHTML = "";
for(var i=0; i< jsonData.result.extractorData.data[0].group.length; i+=1) {
   statusHTML += jsonData.result.extractorData.data[0].group[i];
}
console.log(statusHTML);
statusHTML += '</ul>';
document.getElementById('ajax').innerHTML = statusHTML;

如果您每次只使用=分配给statusHTML,您将始终获得最后一次迭代。
如果你想让每个元素都在它自己的li中,它将是这样的:

var statusHTML = "";
for(var i=0; i< jsonData.result.extractorData.data[0].group.length; i+=1) {
   statusHTML += "<li>";
   statusHTML += jsonData.result.extractorData.data[0].group[i];
   statusHTML += "</li>";
}
console.log(statusHTML);
statusHTML += '</ul>';
document.getElementById('ajax').innerHTML = statusHTML;