by shigemk2

当面は技術的なことしか書かない

akka http routing

akka.http.scaladsl.server.Directives._をimportしたらよかった。

import akka.http.scaladsl.server.Directives._
.....

  val route =
    parameters('color, 'backgroundColor) { (color, backgroundColor) =>
      val result = s"The color is '$color' and the background is '$backgroundColor'"
      complete(result)
    }

parameters — Akka Documentation