Spray 仅支持通过 headerValueByName 提取具有给定名称的 ONE 标头。我怎样才能在下面的 Spray 代码片段中获取名称为“whatever”的所有标题?必须有某种方法来提取标题!?
lazy val myRoute = {
path("hello") {
post {
headerValueByName("whatever") { header =>
}
}
}
}
Spray 仅支持通过 headerValueByName 提取具有给定名称的 ONE 标头。我怎样才能在下面的 Spray 代码片段中获取名称为“whatever”的所有标题?必须有某种方法来提取标题!?
lazy val myRoute = {
path("hello") {
post {
headerValueByName("whatever") { header =>
}
}
}
}