gpt4 book ai didi

javascript - 如何使用 For Loop JavaScript 循环遍历每个条目

转载 作者:行者123 更新时间:2023-12-02 21:44:59 25 4
gpt4 key购买 nike

我的循环函数如下

 var resources= jsonObj.entry;
var resourceType;
var i;
for (i = 0; i < resources.length; i++) {
resourceType += resources[i];
}

console.log(resourceType)

如果我这样做jsonObj.entry[0]我得到第一个条目,所以我实现了 for 循环来获取所有条目,但 console.logresourceType打印以下内容

Console log result

jsonObj.entry

最佳答案

所以,一种方法是

var resources = jsonObj.entry;
var resourceTypeArray = [];
var resourceType = "";

for (let item = 0; item <= resources.length; item++) {
// This will remove all cases where the item doesn't exist and/or resource doesn't exist
if(resources[item] && resources[item].resource){
resourceTypeArray.push(resources[item].resource);
resourceType += JSON.stringify(resources[item].resource);
}
}

// printing out to the console the array with resources
console.info(resourceTypeArray);

// printing out to the console the string with the concatenation of the resources
console.info(resourceType);

我还创建了一个StackBlitz请提供工作解决方案和您的 json 文件。

希望有帮助。

关于javascript - 如何使用 For Loop JavaScript 循环遍历每个条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60278729/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com