UrlSegment
Represents a single URL segment.
class UrlSegment {
constructor(path: string, parameters: {...})
path: string
parameters: {...}
parameterMap
toString(): string
}
Description
A UrlSegment is a part of a URL between the two slashes. It contains a path and the matrix parameters associated with the segment.
Constructor
Parameters
|
Properties
Property | Description |
---|---|
path: string
|
The path part of a URL segment Declared in constructor. |
parameters: {
[name: string]: string;
}
|
The matrix parameters associated with a segment Declared in constructor. |
parameterMap
|
Read-only. |
Methods
ParametersThere are no parameters. Returns
|
Usage notes
Example
@Component({templateUrl:'template.html'})
class MyComponent {
constructor(router: Router) {
const tree: UrlTree = router.parseUrl('/team;id=33');
const g: UrlSegmentGroup = tree.root.children[PRIMARY_OUTLET];
const s: UrlSegment[] = g.segments;
s[0].path; // returns 'team'
s[0].parameters; // returns {id: 33}
}
}