0

我可以有一个像下面“成分”的值这样的双重嵌套对象文字(语法是否正确)?

recipes = [    
            {name: 'Zucchini Muffins',  url: 'pdfs/recipes/Zucchini Muffins.pdf', 
            ingredients: [{name: 'carrot', amount: 13, unit: 'oz' },
                          {name: 'Zucchini', amount: 3, unit: 'sticks'}]
            } 
            ];

如果是这样,我将如何访问“成分”对象的“单位”值?

我可以做这样的事情吗?

伪代码

for each recipes as recipe
       print "this recipe requires" 
         for each recipe.ingredients as ingredients
            ingredients.amount + " " + ingredients.unit;

(我正在考虑使用javascript)

4

1 回答 1

1

这就是你如何从这个数组中获取你需要的所有信息的方法(这里是一个 jsfiddle):

function printRecipes(recipeList) {
    for(var i = 0; i < recipeList.length; i++) { //loop through all recipes
        var recipe = recipeList[0], //get current recipe
            ingredients = recipe.ingredients; //get all ingredients
        console.log("This recipe is named", recipe.name, "and can be accessed via", recipe.url);
        console.log("These are the ingredients:");
        for(var j = 0; j < ingredients.length; j++) { //loop through all ingredients of current recipe
            var ingredient = ingredients[j]; //get current ingredient
            console.log("You need", ingredient.amount, ingredient.name + "(s)", "mesured in", ingredient.unit);
        }
        console.log("Finished recipe", name + "'s", "ingredient list, passing to next recipe!");
    }
}
于 2013-07-25T18:18:54.253 回答