gpt4 book ai didi

javascript - 循环遍历仅以特定模式开头的 JSON 对象

转载 作者:行者123 更新时间:2023-11-28 15:40:19 24 4
gpt4 key购买 nike

循环遍历仅以特定模式开头的 JSON 对象的正确/惯用方法是什么?

示例:假设我有一个类似的 JSON

{
"END": true,
"Lines": "End Reached",
"term0": {
"PrincipalTranslations": {
// nested data here
}
},
"term1": {
"PrincipalTranslations": {
// more nested data here
}
}
}

我只想访问 PrincipalTranslations 对象,我尝试过:

$.each(translations, function(term, value) {
$.each(term, function(pos, value) {
console.log(pos);
});
});

这不起作用,可能是因为我无法循环遍历 ENDLines 对象。

我尝试过类似的事情

$.each(translations, function(term, value) {
$.each(TERM-THAT-STARTS-WITH-PATTERN, function(pos, value) {
console.log(pos);
});
});

使用 wildcards ,但没有成功。我可以尝试搞乱 if 语句,但我怀疑我错过了一个更好的解决方案。谢谢。

最佳答案

如果您只对 PrincipalTranslations 对象感兴趣,则可以使用以下方法:

$.each(translations, function(term, value) {
if (value.PrincipalTranslations !== undefined) {
console.log(value.PrincipalTranslations);
}
});

JSFiddle

关于javascript - 循环遍历仅以特定模式开头的 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23998293/

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