小编Nin*_*nja的帖子

如何使用 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
    }
},
"expensive": 10
}
Run Code Online (Sandbox Code Playgroud)

如果我需要所有书籍的作者和书名怎么办?就像如果我只想要这本书的一些细节而不是拥有关于这本书的完整数据,我怎样才能得到它?

jsonpath

1
推荐指数
1
解决办法
142
查看次数

标签 统计

jsonpath ×1