2

我正在尝试通过 Binding.scala 为个人项目构建通用路由器。

我已经定义了一个PageState特征

sealed trait WhistState {
  def text: String
  def hash: String

  def render: Binding[Node]
}

每种路线类型都有许多子类。然后我尝试创建一个路由器,它基于散列选择正确的类。

object Router {

  val defaultState: WhistState = DefaultState("Games")

  val allStates: Vector[WhistState] = Vector(defaultState)


  val route: Route.Hash[WhistState] = Route.Hash[WhistState](defaultState)(new Route.Format[WhistState] {

    override def unapply(hashText: String): Option[WhistState] = allStates.find(_.hash == window.location.hash)
    override def apply(state: WhistState): String = state.hash

  })

  route.watch()

}

然后我是我的应用程序类,我正在尝试使用它

object Application {
  import example.route.Router._

  @dom
  def render: Binding[Node] = {
    for (hash <- route.state.bind.hash) yield println("hash: " + hash)

    route.state.bind match {
      case default: WhistState => println("default"); default.render.bind
      case _                   => println("none");    <div>NotFound</div>
    }
  }

  def main(args: Array[String]): Unit = {
    dom.render(document.querySelector("#content"), render)
  }

}

我预计更改哈希会强制重新评估route.state.bind match ...表达式。

知道为什么这不起作用吗?

最好的祝福

4

1 回答 1

1

route.state仅在unapply返回 aSome(newState)且不newState等于先前状态时更改。

在您的情况下,unapply始终返回Some(defaultState)or None。这就是为什么route.state永远不会改变。

于 2017-11-23T10:06:20.367 回答