1

在阅读了与变更检测和类似帖子相关的所有材料并且未能解决我的问题后,我在这里发布。

detectChanges()从订阅内部调用ChangeDetectorRef会导致无限循环。如果我不打电话detectChanges,我会得到ExpressionChangedAfterCheck错误。我真的不知道如何解决,为什么会出现ExpressionChangedAfterCheck错误

ngAfterViewInit() {
    this.route.params.subscribe((params) => {
      this.userId = params.userId;
      if (this.userId != undefined) {
        this.loadActivity();
      }
      else {
        alert("Userid not supplied");
      }
      this.cdRef.detectChanges();
    });
  }

  loadActivity() {
    while(this.layers.length > 0){
      this.layers.pop();
    }
    this.loading = true;
    this.userService.authenticatedGet(ApiUrls.GetLocation(this.userId, this.activity.from.getTime(), this.activity.to.getTime()), {}).subscribe(
      (res:any) => {
        this.user = res.user;
        this.loading = false;
        // other logic
        this.cdRef.detectChanges();
        console.log("Loading is " + this.loading);
      }
    );
  }

注意:此问题仅在值与 绑定时存在ngIf

4

1 回答 1

1

我解决了这个问题。问题不在于生命周期,而是leaflet来自 ngx-leaflet 项目的指令。

当我删除传单相关指令和绑定时,所有错误都消失了。

错误也随之而来:

<ng-container *ngIf="!loading">
    <div
      class="map"
      leaflet
      (leafletMapReady)="onMapReady($event)"
      [leafletOptions]="options"
      [leafletLayers]="layers"
      [leafletLayersControl]="layersControl">
    </div>
</ng-container>

我尝试交替添加detectChanges和markForCheck,但再次没有运气。

  onMapReady(map: Map) {
    this.map = map;
    setTimeout(() => map.invalidateSize(), 1000);
    this.route.params.subscribe(params => {
      this.userId = params["userId"];
      this.loadActivity();
    });
    this.cdRef.markForCheck();
  }

最后,我在写这个答案时放弃了传单,我将尝试 Angular-Google-Maps。

是的,年度股东大会工作正常。

于 2018-11-26T15:02:17.093 回答