export class HeroDetailComponent {
heroes;
constructor(private route: ActivatedRoute, private router: Router, private hs : HeroService){
}
ngOnInit(){
this.route.paramMap
.switchMap((params : ParamMap) =>
this.hs.getHeroes(params.get('id')))
.subscribe((heroes) => {
console.log("checking for heroes n subscribe",heroes);
this.heroes = heroes})
}
}
獲得以下錯誤得到錯誤,同時試圖使用paramMap用於獲取路由參數
paramMap的類型不存在「ActivatedRoute」
正確的,但我得到這個錯誤this.route.paramMap – praveen
你有沒有改變,仍然出現錯誤? – Skeptor
是的..我確實改變了,並得到相同的錯誤 – praveen