UrlSegment
表示一个 URL 段。
Represents a single URL segment.
class UrlSegment {
constructor(path: string, parameters: { [name: string]: string; })
path: string
parameters: {...}
parameterMap
toString(): string
}
说明
UrlSegment 是两个斜杠之间的 URL 的一部分。它包含路径和与该段关联的矩阵参数。
A UrlSegment is a part of a URL between the two slashes. It contains a path and the matrix parameters associated with the segment.
Further information available in the Usage Notes...
构造函数
属性
属性 | 说明 |
---|---|
path: string | 声明在构造函数中 The path part of a URL segment |
parameters: { [name: string]: string; } | 声明在构造函数中 The matrix parameters associated with a segment |
parameterMap | 只读 |
方法
参数没有参数。 返回值
|
使用说明
例子
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}
}
}