所以我有这个问题。我无法获得比在方法内部键入的结果更多的结果。单击行路由时,会有一个具有不同行的表,可将您带到有关该特定页面的详细信息页面。现在的问题是我只得到选中的一个。
[0]是我得到的唯一结果。
ngOnInit() {
this.route.paramMap.subscribe((params: ParamMap) => {
this.service.getData().subscribe((world: any) => {
this.country = world.Country.filter(
(country: Country) => country.Code = params.get('code'))[0];
});
});
}