Variables.PolicyCustomerAddresses
(3) [{…}, {…}, {…}]
0: {ADRES_EK: null, ADRES_ID1: 885843, ADRES_TEXT: "XXXX", MUSTERI_ADRES_ID: "333", …}
1: {ADRES_EK: null, ADRES_ID1: 890997, ADRES_TEXT: "YYYY", MUSTERI_ADRES_ID: "222", …}
2: {ADRES_EK: null, ADRES_ID1: 890902, ADRES_TEXT: "ZZZZ", MUSTERI_ADRES_ID: "111", …}
length: 3
correspondenceAdress == 222
像这样,我想通过linq获得whomusteri_adres_id==222
行
var adreeess = Variables.PolicyCustomerAddresses;
var adrx = Enumerable.From(adreeess)
.Where("$.MUSTERI_ADRES_ID === correspondenceAdress ")
.FirstOrDefault(null)
.First();
musteri_adres_id
必须是字符串,作为给定数据中的值。
var Variables = { PolicyCustomerAddresses: [{ ADRES_EK: null, ADRES_ID1: 885843, ADRES_TEXT: "XXXX", MUSTERI_ADRES_ID: "333" }, { ADRES_EK: null, ADRES_ID1: 890997, ADRES_TEXT: "YYYY", MUSTERI_ADRES_ID: "222" }, { ADRES_EK: null, ADRES_ID1: 890902, ADRES_TEXT: "ZZZZ", MUSTERI_ADRES_ID: "111" }] },
correspondenceAdress = "222", // string!
result = Enumerable.From(Variables.PolicyCustomerAddresses)
.Where("$.MUSTERI_ADRES_ID === correspondenceAdress")
.DefaultIfEmpty(null)
.First();
console.log(result);
<script src="https://cdnjs.cloudflare.com/ajax/libs/linq.js/2.2.0.2/linq.js"></script>
我在react JS应用程序上调用API: 然后输出日志: 如何获取数组上的数据? 我需要城市名单
对不起,这是一个基本的,但我尝试在谷歌搜索无论如何,但仍然没有获得成功。
假设我们有一组对象,比如: 我想迭代遍历水果,并每次告诉当前、上一个和下一个水果的名称。我会这样做: 但显然它不适用于下一个和上一个项目…有什么想法吗? 请注意,我不想使用经典for循环 (对于i=0;i 非常感谢!
我在NodeJS和MongoDB上工作,我有这样的数据库JSON 我想删除上的教室 _id:"123"还有类ID:"2046" ,所以在删除过程之后,我将得到如下JSON 所以,请帮助我做到这一点,任何建议都非常欢迎,谢谢
我有一个这样的回应json, 我想显示userId=3的详细信息,但没有为我提供获取详细信息的endpoint。所以我想从这个endpoint得到细节。 应用程序内: 我已经显示了仪表板的数据(使用recyclerview/list)
表的复合键是symbol和“datetime”(它只是一个时间戳)。这两列在dynamodb中都设置为字符串。 我收到的错误是:提供的键元素与模式不匹配