angular-docs-cn/public/docs/_examples/toh-5/ts/app/dashboard.component.ts

37 lines
839 B
TypeScript
Raw Normal View History

2015-12-23 09:42:57 -08:00
// #docplaster
// #docregion
// #docregion imports
2016-04-27 11:28:22 -07:00
import { Component, OnInit } from '@angular/core';
2015-12-23 09:42:57 -08:00
import { Hero } from './hero';
import { HeroService } from './hero.service';
// #enddocregion imports
// #docregion metadata
2015-12-23 09:42:57 -08:00
@Component({
moduleId: module.id,
2015-12-23 09:42:57 -08:00
selector: 'my-dashboard',
templateUrl: 'dashboard.component.html',
// #enddocregion metadata
2015-12-23 09:42:57 -08:00
// #docregion css
styleUrls: [ 'dashboard.component.css' ]
2015-12-23 09:42:57 -08:00
// #enddocregion css
// #docregion metadata
2015-12-23 09:42:57 -08:00
})
// #enddocregion metadata
// #docregion class
2015-12-23 09:42:57 -08:00
export class DashboardComponent implements OnInit {
heroes: Hero[] = [];
// #docregion ctor
constructor(private heroService: HeroService) { }
// #enddocregion ctor
2015-12-23 09:42:57 -08:00
ngOnInit(): void {
this.heroService.getHeroes()
.then(heroes => this.heroes = heroes.slice(1, 5));
2015-12-23 09:42:57 -08:00
}
}
// #enddocregion class