如何从akka-http中的请求json主体中划分实体处理?

时间:2018-12-11 00:36:28

标签: akka-http

在AKKA-HTTP中,我想在请求JSON主体中划分POST请求实体并作为type处理。

{ "type" :"custom", "article" : "xxxx"}
{ "type" :"formal", "article" : "yyyy"}

 pathPrefix("article") {
    pathEnd {
      post {
       entity(as[CustomPostRequestBody]) { e ⇒ postCustomPost(e) }
       entity(as[FormalPostRequestBody]) { e ⇒ postUserAdvice(e) }
      }
    }
 }

0 个答案:

没有答案