gpt4 book ai didi

json - 玩2 Json格式,捕获Int或String

转载 作者:行者123 更新时间:2023-12-02 09:31:53 25 4
gpt4 key购买 nike

我有一个问题,我使用休息网络服务而不是返回格式不正确的 json,有时返回字符串,有时返回同一字段中的整数。这是格式的代码:

implicit val ItemFormat: Format[Item] = (
(JsPath \ "a").format[String] and
(JsPath \ "b").format[String] and
(JsPath \ "c").formatNullable[String]
)(Item.apply , unlift(Item.unapply))

如果 c 为空或不存在或者是一个字符串,效果很好,但如果 c 是一个整数,则会出现此错误:ValidationError(List(error.expected.jsstring),WrappedArray()))

如果 c 是一个整数,我会得到,或者将其转换为字符串或放入 c=None

最佳答案

你可以这样做。

case class Item(a: String, b: String, c: Option[String])

implicit val reads: Reads[A] = new Reads[A] {
override def reads(json: JsValue): JsResult[A] = {
for {
a <- (json \ "a").validate[String]
b <- (json \ "b").validate[String]
} yield {
val cValue = (json \ "c")
val cOptString = cValue.asOpt[String].orElse(cValue.asOpt[Int].map(_.toString))
Item(a, b, cOptString)
}
}
}

关于json - 玩2 Json格式,捕获Int或String,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32209959/

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