隐式上下文未定义,角度为7

时间:2019-02-20 18:42:20

标签: javascript angular angular-components

对,所以我正在遍历一系列信息,并且该信息正在显示我想要的方式,但是,我在控制台中发现了一些令人惊奇的错误:ERROR TypeError: "_v.context.$implicit is undefined"

api服务:

private extractData(res: Response) {
    let body = res;
    return body || {};
  }

  getWeather(city: string, isoCode: string): Observable<any> {
    return this.http.get(`${this.endPoint}${city},${isoCode}${this.constants.apiKey}`)
    .pipe(map(this.extractData));
  }

使用api服务的组件:

  theWeather:any = [];
  countryList = COUNTRIES;
  isLoading: boolean = true;
  showWeather: boolean = false;

  constructor(private apiCall:ApiService) { }


  ngOnInit() {
    this.retrieveWeather()
  };

  retrieveWeather() {
    console.log('COUNTRY LIST', this.countryList);

    this.theWeather = [];
    this.countryList.map((element, i) => {
      this.apiCall.getWeather(element.city, element.countryIso)
        .subscribe((data: {}) => {
          element.weatherInfo = data;
        });
        this.isLoading = false;
      });
      this.showWeather = true;
  };

和html文件:

<div class="country-container">
  <div *ngIf="isLoading">
    <mat-card>
      <mat-progress-spinner class="spinner-style" color="primary" mode="indeterminate"></mat-progress-spinner>
    </mat-card>
  </div>
  <div *ngIf="showWeather" class="card-container">
    <mat-card *ngFor="let c of countryList" class="card">
      <mat-card-title>Weather for: {{c.city}}, {{c.countryName}}</mat-card-title>
      <mat-card-content>The current weather is: {{c.weatherInfo.weather[0].description}}</mat-card-content>
    </mat-card>

  </div>
</div>

最后是我的控制台的图像: enter image description here

谢谢您的帮助!

编辑:使标题更明确地针对该问题。

2 个答案:

答案 0 :(得分:0)

根据我在列表中的第5个元素(它表示第10行索引4(即元素5)),它无法获取天气条件...检查错误的请求参数和/或错误的返回数据。删除临时元素或检查它,看看错误是否“移动”。也许最好的办法是即使没有http错误也要检查未定义的内容。

答案 1 :(得分:0)

当 angular 模板循环遍历一组项目并且一个或多个数组元素未定义时,您会收到此错误。

如果您使用以下符号在某个位置放置一个值来创建数组,就会发生这种情况:

myArray[1] = myObject;

如果你这样做,那么 myArray[0] 将没有值,当 angular 循环通过它时,你会得到错误“_v.context.$implicit is undefined”。

使用更安全:

myArray.push(myObject);

如果您从数组中删除一个元素,并在索引处留下未定义的值,您也可能会得到这个。