在阅读了所有与变更检测和类似帖子相关的材料之后,我在这里发布了内容,但未能解决我的问题。
从订阅内部调用 ChangeDetectorRef detectChanges()
会导致无限循环。如果我不打电话给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
绑定时,才会出现此问题。
答案 0 :(得分:1)
我解决了这个问题。问题不是生命周期,而是ngx-leaflet项目的指令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。
是的,A-G-M工作正常。