如何一起使用Circe Optics和Decode

时间:2018-04-26 04:04:02

标签: scala circe

我正在使用像这样的光学光学器件

import io.circe.parser._
import io.circe.optics._
import io.circe.optics.JsonPath._

val json = parse("""{"response": {"person": {"firstname": "foo", "lastname":"bar"}}}""").right.get

现在我想从字符串形式中提取整个人物对象...从这个json像

val p = root.response.person.string

然后将其解码为类似

的案例类
case class Person(firstname: String, lastname: String)
decode[Person](p.getOption(json).get)

但它不起作用,因为root.response.person.string返回null。我认为它只适用于实际的字符串和整数列。

那么可以使用circe光学来提取json的整个部分(例如json中的person对象)吗?然后该部分被解码成案例类?

1 个答案:

答案 0 :(得分:1)

这就完成了。无需在中间使用字符串,只需使用Json

即可
object Some extends App {

  import io.circe.optics.JsonPath._
  import io.circe.parser._
  import io.circe._
  import io.circe.generic.semiauto._

  val json = parse("""{"response": {"person": {"firstname": "foo", "lastname":"bar"}}}""").right.get

  // this is just a lense to the person, not the person yet
  val personJsonPath = root.response.person.json

  case class Person(firstname: String, lastname: String)
  implicit val personDecoder: Decoder[Person] = deriveDecoder[Person]

  val maybePerson = personJsonPath
    // here you get the person out
    .getOption(json)
    // transforming json directly to case class, error handling should not be done like this ;)
    .map(_.as[Person].fold(throw _, identity))

  println(maybePerson)
}