why ActivatedRoute
in @angular\\router params is observable
?
I\'m wondering why do I need to subscribe for Params ? and why params are async
The matrix parameters scoped to this route. The observable will emit a new value when the set of the parameters changes.
The reason that the params property on ActivatedRoute is an Observable is that the router may not recreate the component when navigating to the same component. In this case the parameter may change without the component being recreated.