export class DashboardComponent implements OnInit {
heroes: Hero[] = [];
constructor(private heroService: HeroService) { }
ngOnInit(): void {
this.heroService.getHeroes()
.then(heroes => this.heroes = heroes.slice(1, 5));
}
}
这里heroes: Hero[] = []改成 heroes: Hero[];为什么无法运行? 区别在哪?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…