1

我正在尝试将 Binding.scala 与现有的 http4s 后端服务一起使用,但对它们如何组合在一起有点迷茫。我不确定如何使用 Binding.scala “绑定”一个说 fs2Task或猫的效果。IO

4

1 回答 1

0

我从未使用过 http4s,但提示可能是使用FutureBinding

只要你得到一个 Future,你就可以很好地使用它:

这是我调用异步 Web 服务(ajax 调用)的示例:

  @dom def afClients(): Binding[HTMLElement] = {
    val apiPath = s"/calendar/afClients"

    FutureBinding(Ajax.get(apiPath))
      .bind match {
      case None =>
        <div class="ui active inverted dimmer front">
          <div class="ui large text loader">Loading</div>
        </div>
      case Some(Success(response)) =>
        val json = Json.parse(response.responseText)
        info(s"Json received List[AFClientConfig]: ${json.toString().take(20)}")
        json.validate[List[AFClientConfig]] match {
          case JsSuccess(u, _) =>
            changeAFClients(u)
            <div>
            </div>
          case JsError(errors) =>
            <div>
              {s"Problem parsing User: ${errors.map(e => s"${e._1} -> ${e._2}")}"}
            </div>
        }

      case Some(Failure(exception)) =>
        error(exception, s"Problem accessing $apiPath")
        <div>
          {exception.getMessage}
        </div>
    }
  }
于 2018-01-25T19:40:24.700 回答