0
私はgetHeroesの位置をマーク呼び出すことができますどのようにコードコール機能
constructor(private heroService :HeroService) {}
getHeroes(){
this.heroService.getHeroes().then(response => this.heroes =response);
}
addHero(hero :Hero) {
this.heroService.create(hero).then(function(response){
//call getHeroes here
});
}
を持っています。