如果路由发生变化,则将组件的路由更改为特定组件

时间:2018-09-25 14:46:56

标签: typescript angular6

当应用程序中的路由发生任何更改时,我想将应用程序的路由更改为特定组件。我使用的是 router.events ,但最终却遇到了很多api。这是我的代码

 this.router.events.subscribe (event => 
    { if(event instanceof NavigationStart) {
             this.reportService.getReport(this.reportId).subscribe(data => { 
                  this.Version = data.Version;
                     if(this.version <=5) {                        

           this.route.navigate['anycomponentroute'];
}
        }

    });

任何解决方案?

0 个答案:

没有答案