gpt4 book ai didi

json - 使用 Play 框架在 Scala 中解析 Json 字符串

转载 作者:行者123 更新时间:2023-12-02 08:42:50 35 4
gpt4 key购买 nike

我开始尝试 Scala 和 Play 来解析 Json 数据,并按照 https://www.playframework.com/documentation/2.3.9/ScalaJson 上的教程进行操作。 。现在,当我尝试运行那里给出的示例代码时:

val json: JsValue = Json.parse("""{
"name" : "Watership Down",
"location" : {
"lat" : 51.235685,
"long" : -1.309197
},
"residents" : [ {
"name" : "Fiver",
"age" : 4,
"role" : null
}, {
"name" : "Bigwig",
"age" : 6,
"role" : "Owsla"
} ]
}
""")

val lat = json \ "location" \ "lat"

我收到以下错误:

java.lang.NoSuchMethodError: play.api.libs.json.JsValue.$bslash(Ljava/lang/String;)Lplay/api/libs/json/JsValue;

我做错了什么?我使用的是 Scala 2.10 和 Play 2.3.9。

谢谢。

最佳答案

在 Play 2.4.x 中,JsLookupResult 表示特定 Json 路径处的值,可以是实际的 Json 节点,也可以是未定义的。 JsLookupResult 有两个子类:分别是 JsDefined 和 JsUndefine。

您可以按如下方式修改代码:

val name: JsLookupResult = json \ "user" \ "name"

name match {
case JsDefined(v) => println(s"name = ${v.toString}")
case undefined: JsUndefined => println(undefined.validationError)
}

关于json - 使用 Play 框架在 Scala 中解析 Json 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31690886/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com