gpt4 book ai didi

javascript - jsonpath : How to access a key in current object when the key name is having "hyphen" in it?

转载 作者:行者123 更新时间:2023-11-28 08:10:12 25 4
gpt4 key购买 nike

您好,我正在使用 JSON 路径表达式的 javascript 实现,可在 link 获取。

从下面的 JSON 中,我尝试从“hyphened-key”数组中获取对象列表,其中“inner-hyphenedkey”=1。我尝试使用 "$.hyphened-key[?(@.['inner-hyphenedkey'] ==1 )]"json 路径表达式来实现此目的。但它会引发错误。代码位于jsfiddle

{
"nonhyphenedKey": [
{
"inner-hyphenedkey": 1
},
{
"innernonhyphenedkey": 1
}
],
"hyphened-key": [
{
"inner-hyphenedkey": 1
},
{
"inner-hyphenedkey": 2
}
{
"innernonhyphenedkey": 1
}
]
};

请帮忙解决这个问题。

非常感谢

最佳答案

在 javascript 实现中,您的过滤器表达式(?(...) block )将作为常规 javascript 进行计算。所以你应该在该表达式中使用常规的 javascript。请记住,@ 是对当前节点的引用。

$.hyphened-key[?(@['inner-hyphenedkey'] == 1)]

关于javascript - jsonpath : How to access a key in current object when the key name is having "hyphen" in it?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24307983/

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