0
我有以下使用阿卡HTTP噴霧路由不能理解阿卡HTTP路由
import akka.http.scaladsl.server.Directives._
val geoip =
path(RemainingPath) {remaining =>
val response = . . .
complete(response)
}
Scala的一段代碼,但我得到的錯誤信息
[ERROR] FreeGeoIp.scala:45: error: missing parameter type
[ERROR] path(RemainingPath) {remaining =>
[ERROR] ^
[ERROR] one error found
到底在哪參數類型應該去?
有關這方面的文檔非常差,並根據示例此代碼應該工作。
'路徑(RemainingPath){剩餘:MyTypeHere =>'' –
路徑(RemainingPath){剩餘:字符串=>'是我的第一次嘗試,但也不起作用。 –
如何定義路徑? –