How to detect a route change in Angular? Technology Community › Category: Angular › How to detect a route change in Angular? 0 Vote Up Vote Down VietMX Staff asked 4 years ago In Angular you can subscribe (Rx event) to a Router instance. So you can do things like: class MyClass { constructor(private router: Router) { router.subscribe((val) => /*whatever*/ ) } }