我想知道是否可以验证 JSONPath 表达式。
我的 JSONPath 是$.phoneNumbers[:1].type
我的json如下:
{
"phoneNumbers": [
{
"type" : "iPhone",
"number": "0123-4567-8888"
},
{
"type" : "home",
"number": "0123-4567-8910"
}
]
}
我想知道我是否使用了正确/有效的 JSONPath 表达式。