0

我有一个场景,我需要提取特定的 JSON 值。例如:我想提取书名“世纪语录”的作者。我正在使用以下Jsonpath $..book[?(@.title eq 'Sayings of the Century')]. 但它没有给我任何回报。你能告诉我如何实现这一目标。

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

2 回答 2

1

正确的语法是==,不是eq

您可以使用http://ashphy.com/JSONPathOnlineEvaluator等在线工具测试您的表达

于 2013-09-17T08:34:17.480 回答
0

java和scala是不一样的。您应该清楚地显示 jsonPath 在 scala 中的类型。

例如,在java中,代码是:

JsonPath.read(jsonString, "$.message_metadata.event_type");

但在斯卡拉它是:

JsonPath.read\[String\](jsonString, "$.message_metadata.event_type")

如果您的结果类型是 JSONArray,则代码如下:

JsonPath.read\[JSONArray\](jsonString, "$.message_metadata.event_type")

希望这可以帮到你。

于 2019-10-14T02:35:16.300 回答