我正在使用一个库,而这个库又使用了Jayway JSONPath。我正在为以下JSON文件正确引用jsonpath $.location.city
。
{
"venue":
{
"latitude": "51.0500000",
"longitude": "3.7166700"
},
"location":
{
"continent": " EU",
"country": "BE",
"city": "Brussels"
}
}
但我收到错误"InvalidPathException com.jayway.jsonpath.PathNotFoundException: Missing property in path $['location']for $.location.city"
。 JSON路径有问题吗?