gpt4 book ai didi

javascript - 循环一个 JS 对象

转载 作者:行者123 更新时间:2023-11-30 09:01:31 26 4
gpt4 key购买 nike

我有这个 JS 对象:

{
"data": {
"nid": [{
"cid": "32",
"uid": "780",
"comment": "text"
}]
},
"request_status": "found"
}

我如何遍历这些项目以获得评论值(“评论”:“文本”)?

最佳答案

您真的不需要循环获取它。只是做...

var obj = {"data":{"nid":[{"cid":"32","uid":"780","comment":"text"}]},"request_status":"found"};

var text = obj.data.nid[0].comment;

或者如果有多个,你可以使用forEach...

obj.data.nid.forEach(function(val,i) {
alert( val.comment );
});

或者传统的for循环...

for( var i = 0; i < obj.data.nid.length; i++ ) {
alert( obj.data.nid[i].comment );
}

或者如果你想构建一个数组,使用map...

var arr = obj.data.nid.map(function(val,i) {
return val.comment;
});

或者再次使用传统的 for 循环...

var arr = []
for( var i = 0; i < obj.data.nid.length; i++ ) {
arr.push( obj.data.nid[i].comment );
}

关于javascript - 循环一个 JS 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8868234/

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