JsonPath完全介绍及详细使用教程

Json Path介绍

看它的名字你就能知道,这Json Path和JSON文档有关系,正如XPath之于XML文档一样,JsonPath为Json文档提供了解析能力,通过使用JsonPath,你可以方便的查找节点、获取想要的数据,JsonPath是Json版的XPath。

Json Path语法

JsonPath的语法相对简单,它采用开发语言友好的表达式形式,如果你了解类C语言,对JsonPath就不会感到不适应。
JsonPath完全介绍及详细使用教程_第1张图片
JsonPath完全介绍及详细使用教程_第2张图片

函数

可以在JsonPath表达式执行后进行调用,其输入值为表达式的结果。
JsonPath完全介绍及详细使用教程_第3张图片

过滤器

过滤器是用于过滤数组的逻辑表达式,一个通常的表达式形如:[?(@.age > 18)],可以通过逻辑表达式&&或||组合多个过滤器表达式,例如[?(@.price < 10 && @.category == ‘fiction’)],字符串必须用单引号包围,例如[?(@.color == ‘blue’)]。
JsonPath完全介绍及详细使用教程_第4张图片

Json Path 示例

{
	"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
		}
	}
}

接下来我们看一下如何对这个文档进行解析:
JsonPath完全介绍及详细使用教程_第5张图片
可以在http://jsonpath.com/站点进行验证JsonPath的执行效果。
JsonPath完全介绍及详细使用教程_第6张图片

你可能感兴趣的:(javascript,Json,Path语法,Json,Path教程,Json,Path解析Json)