akka-http如何以html

时间:2016-07-26 05:03:39

标签: akka-http

用于处理我的路由的http有任何方式我可以传递html作为对获取请求的响应

path("employees" / "confirm" / Segments(1)) { confirmationCode =>       
  get {
    complete {
        UserBo().confirmEmail(confirmationCode(0)).map[ToResponseMarshallable]{
          case Right(message) => (OK,ContentTypes.`text/html(UTF-8)`,message.toString)
          case Left(e) => Left(e)
        }
    }
  }
}

我得到这个代码的杰森回应有任何方式我可以得到HTML作为回应

0 个答案:

没有答案