我正在尝试将格式拆分为多个元组,因此它可以处理案例类中超过22个字段。但是,我收到错误“值,并且不是play.api.libs.json.Format”的成员。如何合并案例类的多种格式?
val fields1to2: Format[(Int, String)] = (
(__ \ "a").format[Int] and
(__ \ "b").format[String]
).tupled
val fields3to4: Format[(Boolean, List[Int])] = (
(__ \ "c").format[Boolean] and
(__ \ "d").format[List[Int]]
).tupled
implicit val hugeCaseClassReads: Format[Huge] = (
fields1to2 and fields3to4 // "value and is not a member of play.api.libs.json.Format"
) {
case ((a, b), (c, d)) =>
Huge(a, b, c, d)
}
答案 0 :(得分:0)
添加这些导入为我解决了这个问题。在您的情况下,只需导入第一个即可解决该问题。
import play.api.libs.functional.syntax._
import play.api.libs.json.{Json, Reads, _}
答案 1 :(得分:0)
如果您不仅限于仅使用Play-JSON,请尝试使用Play-Json extensions库:
import ai.x.play.json.Jsonx
implicit val hugeCaseClassReads: Format[Huge] = Jsonx.formatCaseClass
但是使用jsoniter-scala是更方便,安全和有效的选择-它建立了对具有大量字段的案例类的支持。