提问人:Joe 提问时间:8/16/2016 更新时间:10/11/2016 访问量:7827
用于选择字符串或数组的 Jsonpath 表达式
Jsonpath expression to select a string or an array
问:
我有一些JSON数据,其中包含一个数组元素;但是,当数组仅包含一个元素时,信息将以字符串而不是数组的形式提供。请参阅下面的 $.phoneNumbers.type 元素。在第一个电话号码中,“type”元素表示为数组,但该数组仅包含一个元素(“iPhone”)。在第二个电话号码中,类型只是一个简单的字符串(“home”)。
{
"firstName": "John",
"lastName" : "doe",
"age" : 26,
"address" : {
"streetAddress": "naist street",
"city" : "Nara",
"postalCode" : "630-0192"
},
"phoneNumbers": [
{
"type" : ["iPhone"],
"number": "0123-4567-8888"
},
{
"type" : "home",
"number": "0123-4567-8910"
}
]
}
当我尝试使用以下表达式使用 JSONPath 解析它时:
$.phoneNumbers[0].type[0]
当元素未用数组括号括起来时,出现以下错误。
Filter: [0] can only be applied to arrays. Current context is: home - Line: 0"
是否有可以成功解析其中任何一个的 JSONPath 表达式?基本上,我认为我需要一些东西来检查元素是数组还是字符串,然后根据需要进行调整,如下所示:
如果是数组: $.phoneNumbers[0].type[0]
如果是字符串: $.phoneNumbers[0].type
这可能吗?
答:
1赞
StackedOverflow
10/11/2016
#1
将 JSON 输入与 https://jsonpath.curiousconcept.com 一起使用时,我可以使用以下 JSONPath 查询来获取“iPhone”和“home”值: $.phoneNumbers[*].type
评论