帮干工具
EN
JSONPath 测试器
测试和验证 JSONPath 表达式
JSONPath 表达式
执行
示例:
$.store.book[*].author
$.store.book[0].title
$.store.book[?(@.price<30)]
$..author
$.store.book[*].price
JSON 数据
清空
{ "store": { "book": [ { "category": "fiction", "author": "J. K. Rowling", "title": "Harry Potter", "price": 29.99 }, { "category": "fiction", "author": "George R. R. Martin", "title": "Game of Thrones", "price": 35.99 }, { "category": "programming", "author": "Robert C. Martin", "title": "Clean Code", "price": 44.99 }, { "category": "programming", "author": "Martin Fowler", "title": "Refactoring", "price": 39.99 } ], "bicycle": { "color": "red", "price": 19.99 } }, "expensive": 10 }