Jsonpath查询嵌套对象

时间:2016-12-09 08:30:54

标签: json jsonpath

我有这个json数据,我想通过查询查找某个值:

http://pastebin.com/Vf59Cf9Q

我想找到描述==" chassis"在这条道路上:

$.entries..nestedStats.entries..nestedStats.entries.type

但是,我无法让它发挥作用。

尝试了这两种选择,但没有运气:

$.entries..nestedStats.entries..nestedStats.entries[?(@.type.description == 'chassis')]
$.entries..nestedStats.entries..nestedStats.entries.type[?(@.description == 'chassis')]

在这些网站上试过这个:

任何帮助将不胜感激!

/帕特里克

1 个答案:

答案 0 :(得分:0)

这就是诀窍:

$.entries.*.nestedStats.entries.*.nestedStats.entries.type[?(@ == "chassis")