本文整理汇总了TypeScript中@angular/router.RouteParams类的典型用法代码示例。如果您正苦于以下问题:TypeScript RouteParams类的具体用法?TypeScript RouteParams怎么用?TypeScript RouteParams使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了RouteParams类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor(params: RouteParams) {
this.id = params.get('id');
cmpInstanceCount += 1;
}
示例2: constructor
constructor(routeParams: RouteParams) {
this.id = routeParams.get("id");
}
示例3: ngOnInit
// #enddocregion ctor
// #docregion ng-oninit
ngOnInit() {
// #docregion get-id
let id = +this._routeParams.get('id');
// #enddocregion get-id
this._heroService.getHero(id)
.then(hero => this.hero = hero);
}
示例4: ngOnInit
ngOnInit() {
this.Organization = + this._routeParams.get('organizationid');
if (this.Model) {
console.log('Model loaded');
this.DepartmentList = this.Model.filter(x => x.ParentId == this.ParentId)
}
}