gpt4 book ai didi

angular - 尝试使用 paramMap 获取路由参数时出错

转载 作者:太空狗 更新时间:2023-10-29 19:28:43 25 4
gpt4 key购买 nike

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 在类型“ActivatedRoute”上不存在

最佳答案

import 'rxjs/add/operator/switchMap';

将该导入添加到您的组件中...

关于angular - 尝试使用 paramMap 获取路由参数时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44974088/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com