我正在使用带有 playframework 2 的内置 jerson,我想要的只是序列化包含不同类型值的地图:
object AppWriter extends Writes[Application] {
def writes(app: Application): JsValue = {
Json.toJson(Map(
"id" -> app.getId.toString,
"name" -> app.getName,
"users" -> Seq(1, 2, 3)
))
}
}
在这种情况下,我有:
No Json deserializer found for type scala.collection.immutable.Map[java.lang.String,java.lang.Object].
Try to implement an implicit Writes or Format for this type
通过框架代码导航显示 Map[String,V] 类型隐式 def mapWrites[V] .. 的序列化程序,但我不明白为什么它不适用。
有谁能够帮助我?
UPD:我找到了简单的解决方法:
object AppWriter extends Writes[Application] {
def writes(app: Application): JsValue = {
Json.toJson(Map[String, JsValue](
"id" -> JsNumber(BigDecimal(app.getId)),
"name" -> JsString(app.getName),
"users" -> JsArray(Seq(1, 2, 3).map(x => JsNumber(x)))
))
}
}
但这不是那么优雅......