ngRoute - 重新路由到当前位置路径

ngRoute - re-route to current location path

ngRoute 是否可以路由到当前路径?本质上,我有一个场景,我的应用程序将路由到 controller/view,然后在一段时间后可以在应用程序的另一部分执行事件处理程序,该部分更改全局对象,并且相同的 controller/view 应该再次执行。我尝试只路由到同一路径(使用 location.path),但 ngRoute 似乎忽略了应用程序当前在该路径上的请求。

根据文档,您可以使用 $route.reload() 方法:

Causes $route service to reload the current route even if $location hasn't changed.

As a result of that, ngView creates new scope and reinstantiates the controller.