gpt4 book ai didi

angularjs - 如何查询 JSON 对象

转载 作者:行者123 更新时间:2023-12-04 00:11:11 26 4
gpt4 key购买 nike

在我的 AngularJS 网络应用程序中,如何查询 JSON 对象?

例如,在下面的 JSON 对象中,我如何找到 reportTypeLabel 的值,其中 reportTypeId=3

JSON:

[  
{
reportTypeId:5,
reportTypeCode:"FINREP",
reportTypeLabel:"Financial Reporting"
},
{
reportTypeId:9000002,
reportTypeCode:"REM HE",
reportTypeLabel:"High Earners"
},
{
reportTypeId:3,
reportTypeCode:"COREP LE",
reportTypeLabel:"Large Exposures - COREP"
}
]

最佳答案

您可以要求 $filter 服务并执行

var elements = $filter('filter')(arrayOfObjects,{reportTypeId: 3});

元素将是具有该“reportTypeId”的所有元素的数组我建议阅读 Angular 过滤器和 https://docs.angularjs.org/api/ng/service/ $过滤器

关于angularjs - 如何查询 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34883332/

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