2
在this鏈接,文檔使用instanceof來封送對象爲JSON,如下圖所示:編組站在阿卡HTTP
val route = get {
completeWith(instanceOf[Person]) { completionFunction => findPerson(completionFunction) }
}
然而,當我嘗試使用相同的我得到的錯誤「unable to resolve symbol instanceOf
」。我怎樣才能解決這個問題?
'import akka.http.scaladsl.server.Directives._' –
謝謝。有效。那麼instanceOf是一個指令嗎?但是我無法在http://doc.akka.io/docs/akka-http/current/scala/http/routing-dsl/directives/alphabetically.html上找到instanceOf – codingsplash
不是一個指令,更像是一個輔助方法。見https://github.com/akka/akka-http/blob/master/akka-http/src/main/scala/akka/http/scaladsl/server/directives/MarshallingDirectives.scala –