Represents the state of the router.
@Component({templateUrl:'template.html'}) class MyComponent { constructor(router: Router) { const state: RouterState = router.routerState; const root: ActivatedRoute = state.root; const child = root.firstChild; const id: Observable<string> = child.params.map(p => p.id); //... } }
interface RouterState extends Tree { snapshot : RouterStateSnapshot toString() : string }
RouterState is a tree of activated routes. Every node in this tree knows about the "consumed" URL segments, the extracted parameters, and the resolved data.
See ActivatedRoute
for more information.
snapshot : RouterStateSnapshot
The current snapshot of the router state
toString() : string
exported from @angular/router/index, defined in @angular/router/src/router_state.ts
© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v2.angular.io/docs/ts/latest/api/router/index/RouterState-interface.html