📜  角度路由器 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:25.856000             🧑  作者: Mango

代码示例6
// Place import at the top
import { Router,NavigationStart} from '@angular/router';

//Place the code below inside your class
constructor(private router: Router){}

ngOnInit(){
   this.router.events.subscribe(event =>{
      if (event instanceof NavigationStart){
           
      }
   })
}