从 JSONPath 中的过滤器表达式中选取第 N 项
Pick the Nth item from a filter expression in JSONPath
我一直在尝试使用 JSONPath 在 JSON 中过滤特定元素,然后仅选择 returned 结果数组中的第一项。
我的基础 JSON路径看起来像这样:
$.store.book[?(@.category==fiction)].price
我想像这样添加 [0]
过滤器:
$.store.book[?(@.category==fiction)][0].price
但它没有 return 结果,或者如果我将 [0]
放在最后一个 "price" 之后,我会收到此错误:
Filter: [0]['price'] can only be applied to arrays
我一直在搜索,但找不到正确的语法来在应用过滤器后拉出数组中的第一个元素,就像在 xpath 中一样。
这是基础 JSON 我正在研究:
{ "store": {
"book": [
{ "category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95
},
{ "category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{ "category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{ "category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
}
}
目前唯一的解决办法是:
List<Double> prices = JsonPath
.parse(json)
.read("$.store.book[?(@.category == 'fiction')].price");
Double firstPrice = prices.isEmpty() ? null : prices.get(0);
当你想将 jsonpath 与 spring mvc 一起使用时如何,我最终得到了
.andExpect(jsonPath("$[?(@.name.value == 'Item')].depth", is(Collections.singletonList(2))))
而不是
.andExpect(jsonPath("$[?(@.name.value == 'Item')][0].depth", is(2)))
顺便说一下,它曾经在我的旧版本 (0.9.1) 中工作
我一直在尝试使用 JSONPath 在 JSON 中过滤特定元素,然后仅选择 returned 结果数组中的第一项。
我的基础 JSON路径看起来像这样:
$.store.book[?(@.category==fiction)].price
我想像这样添加 [0]
过滤器:
$.store.book[?(@.category==fiction)][0].price
但它没有 return 结果,或者如果我将 [0]
放在最后一个 "price" 之后,我会收到此错误:
Filter: [0]['price'] can only be applied to arrays
我一直在搜索,但找不到正确的语法来在应用过滤器后拉出数组中的第一个元素,就像在 xpath 中一样。
这是基础 JSON 我正在研究:
{ "store": {
"book": [
{ "category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95
},
{ "category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{ "category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{ "category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
}
}
目前唯一的解决办法是:
List<Double> prices = JsonPath
.parse(json)
.read("$.store.book[?(@.category == 'fiction')].price");
Double firstPrice = prices.isEmpty() ? null : prices.get(0);
当你想将 jsonpath 与 spring mvc 一起使用时如何,我最终得到了
.andExpect(jsonPath("$[?(@.name.value == 'Item')].depth", is(Collections.singletonList(2))))
而不是
.andExpect(jsonPath("$[?(@.name.value == 'Item')][0].depth", is(2)))
顺便说一下,它曾经在我的旧版本 (0.9.1) 中工作