美文网首页
JSONPath基本语法

JSONPath基本语法

作者: E术家 | 来源:发表于2023-07-13 17:36 被阅读0次

JSONPath调试地址

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

$ 根节点
$.store.book 获取book节点
$..bicycle 获取根节点下所有bicycle的节点
$.store.book[0].price 获取第一个book节点下的price
$.store.book[*].price 获取所有book节点下的price
更多语法

相关文章

  • JsonPath 语法手册

    JsonPath基本用法 本文主要介绍JsonPath的基本语法,并演示如何在Newtonsoft.Json中进行...

  • Python_JsonPath

    JsonPath基本用法 本文主要介绍JsonPath的基本语法,并演示如何在Newtonsoft.Json中进行...

  • 07-数据提取-jsonpath

    jsonpath用来解析多层嵌套的json数据jsonpath官方文档 安装 语法 使用 字典的根节点为最外部大括...

  • json解析工具jsonpath

    JsonPath提供的json解析非常强大,它提供了类似正则表达式的语法,基本上可以满足所有你想要获得的json内...

  • JsonPath基本使用

    JsonPath is to JSON what XPATH is to XML, a simple way to...

  • 教程:xPath和jsonPath使用

    xPath是一种XML遍历的语法,可以从XML文档中提取特定的元素、属性、数据。jsonPath是类似xPath的...

  • 11.jsonpath模块

    jsonpath模块 知识点 -了解 jsonpath模块的使用场景 -掌握 jsonpath模块的使用 1. j...

  • Markdown语法

    Markdown基本语法 Markdown基本语法1 Markdown基本语法2(全、有用)

  • 1,JsonPath简介

    1,Jayway JsonPath Jayway JsonPath是一个读取json文档的java DSL 实现 ...

  • Jsonpath快速去深层次的json

    1.jsonpath

网友评论

      本文标题:JSONPath基本语法

      本文链接:https://www.haomeiwen.com/subject/hcwmudtx.html