gpt4 book ai didi

javascript - 检查 JSON 对象中的值

转载 作者:行者123 更新时间:2023-11-29 18:37:38 24 4
gpt4 key购买 nike

我需要查明 id 是否出现在我的 JSON 对象中,例如:

{
"requested": "2009-07-25T14:12:25+01:00",
"channels": [
{"id": 1, "name": "General", "created": "2009-07-25 14:00:02"}
]
}

具体来说,我需要检查我的 id(比如 2)是否出现在 channels.i.id。如何做到这一点?

最佳答案

试试这个:

var id = 2,
found = false;
for (var i=0; i<channels.length; i++) {
if (channels[i].id == id) {
found = true;
break;
}
}

关于javascript - 检查 JSON 对象中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1182082/

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