Angular仅从方法中获得1值,我如何才能获得多个结果

时间:2018-10-23 11:05:48

标签: javascript angular typescript

所以我有这个问题。我无法获得比在方法内部键入的结果更多的结果。单击行路由时,会有一个具有不同行的表,可将您带到有关该特定页面的详细信息页面。现在的问题是我只得到选中的一个。

[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];
    });
  });
}

0 个答案:

没有答案