0

我正在尝试读取收到的 json 中的内部对象。我需要按原样获取这个内部对象并将其插入 Mongo。

{
  "order" : {
    "customer" : {
      "name" : "Custy McCustomer",
      "contactDetails" : {
        "address" : "1 Fake Street, London, England",
        "phone" : "0123-456-789"
      }
    },
    "items" : [
      {
        "id" : 123,
        "description" : "banana",
        "quantity" : 1
      },
      {
        "id" : 456,
        "description" : "apple",
        "quantity" : 2
      }
    ],
    "total" : 123.45
  }
}
4

1 回答 1

1

基于原始示例,您将推出一个Decoder. 我不是circe专家,我昨天才第一次使用它,但我认为downField应该可以。

case class Item(id: String, description: String, quantity: Int)
case class InnerObject(items: List[Item])

object InnerObject {
  implicit val decode: Decoder[InnerObject] = Decoder.instance(c =>
    c.downField("items").as[InnerObject]
  )
}
于 2017-04-21T22:02:28.983 回答