gpt4 book ai didi

scala - 基于请求内容类型的不同路由 Spray Routing 1.2.1

转载 作者:行者123 更新时间:2023-12-04 12:08:10 24 4
gpt4 key购买 nike

我想支持提交到同一 URL 的几种不同的内容类型:

例如:
application/x-www-form-urlencoded , multipart/form-data , application/json
我想做类似的事情:

post {
contentType(`application/x-www-form-urlencoded`) |
contentType(`multipart/form-data`) {
// user POSTed a form
entity(as[MyCaseClass]) { data =>
complete { data.result }
}
} ~ contentType(`application/json`) {
// user POSTed a JSON object
entity(as[MyCaseClass]) { data =>
complete { data.result }
}
}
}

我认为可能有一些方法可以通过自定义编码和解码来做到这一点,但我只需要在我的服务中的一两个地方使用它,这看起来很简单。有人可以帮忙吗?

最佳答案

由于 Spray marshalling 系统非常聪明,有一种非常优雅的方法可以实现这一点。代码 ( gist ) 说明了这一点:

case class User(name: String, no: Int)

// Json marshaller
object UnMarshalling extends DefaultJsonProtocol {
val jsonUser = jsonFormat2(User)
val textUser = Unmarshaller[User](`text/plain`) {
case HttpEntity.NonEmpty(contentType, data) =>
val res = data.asString.drop(5).dropRight(1).split(',')
User(res(0),res(1).toInt)
}
implicit val userMarshal = Unmarshaller.oneOf(jsonUser, textUser)
}

class UnMarshalTest extends FunSpec with ScalatestRouteTest with Matchers {
import UnMarshalling._

// Marshals response according to the Accept header media type
val putOrder = path("user") {
put {
// Namespace clash with ScalaTestRoutes.entity
MarshallingDirectives.entity(as[User]) {
user =>
complete(s"no=${user.no}")
}
}
}

describe("Our route should") {

val json = """ {"name" : "bender", "no" : 1234} """

it("submit a json") {
Put("/user", HttpEntity(`application/json`,json)) ~> putOrder ~> check {
responseAs[String] should equal("no=1234")
}
}
it("Submit text") {
Put("/user", HttpEntity(`text/plain`,"""User(Zoidberg,322)""")) ~> putOrder ~> check {
responseAs[String] should equal("no=322")
}
}
}
}

关于scala - 基于请求内容类型的不同路由 Spray Routing 1.2.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22826317/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com