用于处理我的路由的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作为回应