On this page
UrlTree
interface
| npm Package | @angular/router | 
|---|---|
| Module | import { UrlTree } from '@angular/router'; | 
     
| Source | router/src/url_tree.ts | 
Interface Overview
interface UrlTree { 
  root: UrlSegmentGroup
  queryParams: {...}
  fragment: string | null
  get queryParamMap: ParamMap
  toString(): string
}
  How To Use
@Component({templateUrl:'template.html'})
class MyComponent {
  constructor(router: Router) {
    const tree: UrlTree =
      router.parseUrl('/team/33/(user/victor//support:help)?debug=true#fragment');
    const f = tree.fragment; // return 'fragment'
    const q = tree.queryParams; // returns {debug: 'true'}
    const g: UrlSegmentGroup = tree.root.children[PRIMARY_OUTLET];
    const s: UrlSegment[] = g.segments; // returns 2 segments 'team' and '33'
    g.children[PRIMARY_OUTLET].segments; // returns 2 segments 'user' and 'victor'
    g.children['support'].segments; // return 1 segment 'help'
  }
}
  Description
Since a router state is a tree, and the URL is nothing but a serialized state, the URL is a serialized tree. UrlTree is a data structure that provides a lot of affordances in dealing with URLs
Members
root: UrlSegmentGroup
  The root segment group of the URL tree
queryParams: { [key: string]: string; }
  The query params of the URL
fragment: string | null
  The fragment of the URL
get queryParamMap: ParamMap
  toString(): string
  © 2010–2018 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
 https://v5.angular.io/api/router/UrlTree