我正在使用https://github.com/json4s/json4s。如何将它的值转换为相应JDouble
的JBool
Scala 的数据类型 -Double
和Boolean
?
更新:
scala> (json \ "status")
res8: org.json4s.JValue = JBool(false)
scala> (json \ "status").extract[Boolean]
<console>:16: error: No org.json4s.Formats found. Try to bring an instance of org.json4s.Formats in scope or use the org.json4s.DefaultFormats.
(json \ "status").extract[Boolean]