On this page
UrlSegmentGroup
class
final
Represents the parsed URL segment group.
class UrlSegmentGroup {
constructor(segments: UrlSegment[], children: { [key: string]: UrlSegmentGroup; })
parent: UrlSegmentGroup | null
segments: UrlSegment[]
children: {...}
numberOfChildren: number
hasChildren(): boolean
toString(): string
}
Description
See UrlTree
for more information.
Constructor
|
segments |
UrlSegment[] |
The URL segments of this group. See |
children |
object |
The list of children of this group |
Properties
Property | Description |
---|---|
parent: UrlSegmentGroup | null |
The parent node in the url tree |
segments: UrlSegment[] |
Declared in Constructor The URL segments of this group. See |
children: { [key: string]: UrlSegmentGroup; } |
Declared in Constructor The list of children of this group |
numberOfChildren: number |
Read-Only Number of child segments |
Methods
hasChildren()
|
---|
Whether the segment has child segments |
|
toString()
|
---|
|
© 2010–2023 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v14.angular.io/api/router/UrlSegmentGroup