我在Scala中使用带有Spray Routing的Akka HTTP有以下代码
import akka.http.scaladsl.server.Directives._
val geoip =
path(RemainingPath) {remaining =>
val response = . . .
complete(response)
}
但是我收到错误消息
[ERROR] FreeGeoIp.scala:45: error: missing parameter type
[ERROR] path(RemainingPath) {remaining =>
[ERROR] ^
[ERROR] one error found
参数类型到底应该去哪里?
这方面的文档非常差,根据示例,此代码应该可以工作。