- 已关闭**。此问题需要details or clarity。当前不接受答案。
- 想要改进此问题?**添加详细信息并通过editing this post阐明问题。
1小时前关闭。
Improve this question
嗨,我有显示结构的JSON,只是想过滤项目对应的区域
就像如果地区是"美国",它应该显示名称对应关系,我怎么做呢?
{
"name": "Testing",
"category": "Sales",
"subcategory": "Productivity",
"imageUrl": "Banner.jpg",
"logo": "Testing.png",
"appDetails": [
{
"systemOverview": "https:........",
"Benefits": [
{
"label": "A light weight and standalone diagnostic tool"
}
],
"region": [
{
"label": "USA"
}
]
}
]
},
1条答案
按热度按时间unftdfkk1#
使用
find
数组方法。它在找到第一个匹配项后停止枚举数组并返回值。