将jsvalue转换为自定义类,使用此代码。
def Foo(today : String):String = {
implicit def read (js: JsValue) : Reads[ResponseBasicModel[String]] = Reads[ResponseBasicModel[String]](
js => JsSuccess(ResponseBasicModel[String](
ReturnValue = js.("ReturnValue").toString()
)
)
)
CallAPI[ResponseBasicModel[String]](
"GET",
"URL"
,15.second).ReturnValue
}
卡拉皮:
def CallAPI[A](httpMethod: String, subURL: String, timeout: FiniteDuration)(implicit m: scala.reflect.Manifest[A], read: Reads[A]) :A = {
/...
Json.parse(robots.toString()).as[A]
}
但是它返回错误
错误:(20,47)未找到针对类型的JSON DESERIALIZER finance.remittance.data.ResponseBasicModel [string]。尝试实现 隐式读取或格式为此类型。 返回callapi [Response basicmodel [string]](
是否有解决方案?
我用此代码解决了这个问题。
写入为无效,因为我不使用写入函数。
def Foo(today : String):String = {
implicit object ResponseBasicModelFormat extends Format[ResponseBasicModel[String]]{
def reads(js: JsValue) =JsSuccess(ResponseBasicModel[String](
ReturnValue = js.("ReturnValue").toString()
))
def writes(res : ResponseBasicModel[String]): JsValue=null
}
CallAPI[ResponseBasicModel[String]](
"GET",
"URL"
,15.second).ReturnValue
}