router.changes.subscribe在angular2路由器rc2中已弃用

时间:2016-09-10 05:38:09

标签: angular2-router3

似乎已弃用router.changes.subscribe

可以用什么代替呢?

我想在每个路由器更改上做一些事情,所以请向我提供帮助,作为路由器可以做什么。

1 个答案:

答案 0 :(得分:0)

我有这个解决方案。

router.events.subscribe(event:Event => {
if(event instanceof NavigationStart) {
}
// NavigationEnd
// NavigationCancel
// NavigationError
// RoutesRecognized

}