如何使用spray-json将入站的空可选数组字段转换为None?

时间:2019-03-25 12:43:03

标签: scala optional spray-json

我正在使用的网站为没有值的可选字段返回空数组。

即给定这些定义-

case class Sample(f1: Option[Seq[F1]], id: Option[Int])

implicit val formatF1 = jsonFormat4(F1)
implicit val formatSample = jsonFormat2(Sample)

我明白了-

Sample(Some(List()),Some(123))

而不是-

Sample(None,Some(123))

是否有一种简单的方法可以在入站为空时返回None?我只对读取方面感兴趣,不会写json。

2 个答案:

答案 0 :(得分:1)

我从未使用过此插件,但基于我所读的内容。我想你想要这样的东西。


import spray.json._
import spray.json.DefaultJsonProtocol._

// Example Class for F1.
case class F1(value: String) extends AnyVal
case class Sample(f1: Option[Seq[F1]], id: Option[Int])

implicit val formatF1 = jsonFormat4(F1)

implicit object SampleFormat extends JsonFormat[Sample] {

  // Custom Reads validation.
  def read(json: JsValue): Record = json match {
    case JsObject(v) =>
      try {
        Sample({
          val F1_JSON = v("f1").convertTo[Seq[F1]]
          if (F1_JSON.isEmpty) None else Some(F1_JSON)
        },
        v("id").convertTo[Option[Int]])
      } catch {
        case _ => deserializationError("Cannot De-serialize to Sample object.")
      }

    case _ => deserializationError("Not a Sample Object.")
  }
}

答案 1 :(得分:0)

我已经接受了Rex发布的答案,因为它确实有效,这是我最先提出的答案,但我认为您也可以这样做-

implicit def optionalSeqFmt[T: JsonFormat] = new RootJsonFormat[Option[Seq[T]]] {
    def read(v: JsValue): Option[Seq[T]] = v match {
        case JsArray(es) if es nonEmpty => Some(es map { _.convertTo[T] })
        case _                          => None
    }

    def write(list: Option[Seq[T]]) = ???
}

在我的情况下,我不需要写部分,因此可以使用JsonReader而不是JsonFormat,但这似乎不起作用。