How do I get active route data like params inside the subscribed router.events?
I do not want to subscribe to this.route.params!
// Catch any events in a certain component, where I subscribe to it!
this.router.events.subscribe(event =>
{
// The event object has only the url (when is NavigationStart/End), there is nothing useful for me
});
UPDATE
My question is different because I do not ask how to react to router events!
I ask for how to get the activate route params within the router.events !
Thats a difference for sure!