使用Scala中的Finagle / Finch在正文中发送数据时出错

时间:2017-04-20 02:58:57

标签: scala rest finagle argonaut

我正在使用Finagle/Finch,我收到此错误:

diverging implicit expansion for type argonaut.DecodeJson[A] starting 
  with method MapDecodeJson in trait DecodeJsons
diverging implicit expansion for type argonaut.DecodeJson[V] starting 
  with method MapDecodeJson in trait DecodeJsons
not enough arguments for method body: (implicit d: 
 io.finch.Decode.Aux[A,CT], implicit ct: 
 scala.reflect.ClassTag[A])io.finch.Endpoint[A]. Unspecified value 
 parameters d, ct.

对于此代码:

def sendPost(db: CommDb): Endpoint[String] =
  post("posts" :: body.as[String]) { s: String =>
    Ok("success")
  }

我不知道如何解决这个问题。

1 个答案:

答案 0 :(得分:2)

body API在Finch 0.11中已更改。只需将body调用更改为body[CT, Foo](其中CT为内容类型),您应该将其编译。一件事:String主体是一种特殊情况,因此您可能希望使用stringBody(无类型参数),因为body偏向于使用给定的JSON /解码有效负载XML /无论解码器。

scala> import io.finch._, io.finch.circe._

scala> s(Input.post("/").withBody[Application.Json](Map("foo" -> "bar"))).awaitValueUnsafe()
res2: Option[String] = Some({"foo":"bar"})