ngIf - Expression has changed after it was checked

AngularAngular2 Changedetection

Angular Problem Overview


I have a simple scenario, but just can't get it working!

In my view I display some text in a box with limited height.

The text is being fetched from the server, so the view updates when the text comes in.

Now I have an 'expand' button that has a ngIf that should show the button if the text in the box is overflowing.

The problem is that because the text changes when it is fetched, the 'expand' button's condition turns to true after Angular's change detection has finished...

So I get this error: Expression has changed after it was checked. Previous value: 'false'. Current value: 'true'.

Obviously the button does not show...

see this Plunker (check the console to see the error...)

Any idea how to make this work?

Angular Solutions


Solution 1 - Angular

this error occur because you in dev mode:

In dev mode change detection adds an additional turn after every regular change detection run to check if the model has changed.

so, to force change detection run the next tick, we could do something like this:

export class App implements AfterViewChecked {

  show = false; // add one more property
  
  constructor(private cdRef : ChangeDetectorRef) { // add ChangeDetectorRef
    //...
  }
  //...
  ngAfterViewChecked() {
    let show = this.isShowExpand();
    if (show != this.show) { // check if it change, tell CD update view
      this.show = show;
      this.cdRef.detectChanges();
    }
  }
  
  isShowExpand()
  {
    //...
  }
}

Live Demo: https://plnkr.co/edit/UDMNhnGt3Slg8g5yeSNO?p=preview

Solution 2 - Angular

Causing change detector to run after ngAfterContentChecked solved the problem for me

example as below:

import { ChangeDetectorRef,AfterContentChecked} from '@angular/core'
export class example implements OnInit, AfterContentChecked {
    ngAfterContentChecked() : void {
        this.changeDetector.detectChanges();
    }
}

Although, as I read some of the articles, this issue gets solved in production mode without any required fix.

Below is the possible reason for such issue:

It enforces a uni-directional data flow: when the data on our controller classes gets updated, change detection runs and updates the view.

But that updating of the view does not itself trigger further changes which on their turn trigger further updates to the view

https://blog.angular-university.io/how-does-angular-2-change-detection-really-work/

Solution 3 - Angular

For some reason, @Tiep Phan's answer didn't work for me to force change detection, but using setTimeout (which also forces change detection) did.

I also only had to add it to the offending line, and it worked fine with the code I already had in ngOnInit instead of having to add ngAfterViewInit.

Example:

ngOnInit() {
    setTimeout(() => this.loadingService.loading = true);
    asyncFunctionCall().then(res => {
        this.loadingService.loading = false;
    })
}

More details here: https://github.com/angular/angular/issues/6005

Solution 4 - Angular

implement AfterContentChecked method.

constructor(
    private cdr: ChangeDetectorRef,
) {}

ngAfterContentChecked(): void {
   this.cdr.detectChanges();
}  

Solution 5 - Angular

To overcome this issue you can move the variable that changes *ngIf state, from ngAfterViewInit to ngOnInit or constructor.Because it's not allowed to change the state of html while AfterViewInit method is calling.

As @tiep-phan told, another way is passing ChangeDetectorRef to constructor and calling this.chRef.detectChanges() after changing state of *ngIf in AfterViewInit method.

Solution 6 - Angular

We can also suppress this ExpressionChangedAfterItHasBeenCheckedError being thrown by changing the changeDetection to OnPush. So, extra change detection will not be executed hence no error is thrown. For this, you need to add ChangeDetectionStrategy.OnPush as part of @Component decorator in your .ts file as below:

@Component({
  selector: 'your-component',
  templateUrl: 'your-component.component.html',
  changeDetection: ChangeDetectionStrategy.OnPush
})

Solution 7 - Angular

For anyone struggling with something similar, basically you are trying to update the dom in a place where you shouldn't, in this link https://blog.angular-university.io/angular-debugging/ you can find details on how to debug, find the exact piece of code that is generating the issue, and some ideas on how to fix it

Solution 8 - Angular

if you are using BehaviorSubject for sharing the value between components:

component.ts:
import { Observable } from 'rxjs/Observable';
import {tap, map, delay} from 'rxjs/operators';

private _user = new BehaviorSubject<any>(null);
user$ = this._user.asObservable();

Observable.of('response').pipe(
            tap(() =>this._user.next('yourValue'),
            delay(0),
            map(() => 'result')
          );

component.html:
<login *ngIf="!(dataService.user$ | async); else mainComponent"></login>

Solution 9 - Angular

I received this error because I was opening up a Ngbmodal popup on load which included the object being changed after it was checked. I resolved this issue by calling the modal open function inside of setTimeout.

setTimeout(() => {
  this.modalReference = this.modalService.open(this.modal, { size: "lg" });
});

Solution 10 - Angular

Angular change detection Process is Synchronous, to avoid this error we can make this as async process, and we can make that code to run outside of Change Detection by doing something like. we can put this snippet inside onInit or Constructor method.

this.ngZone.runOutsideAngular(() => {    
     this.interval = window.setInterval(() => {        

         //logic which we want to handle

     }, 1)});

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionnaomiView Question on Stackoverflow
Solution 1 - AngularTiep PhanView Answer on Stackoverflow
Solution 2 - AngularNikhil KamaniView Answer on Stackoverflow
Solution 3 - Angularcs_pupilView Answer on Stackoverflow
Solution 4 - AngularParinda RajapakshaView Answer on Stackoverflow
Solution 5 - AngularAmirHossein RezaeiView Answer on Stackoverflow
Solution 6 - AngularSteffi Keran Rani JView Answer on Stackoverflow
Solution 7 - AngularCamilo CasadiegoView Answer on Stackoverflow
Solution 8 - Angularpa1 RajuView Answer on Stackoverflow
Solution 9 - AngularEricView Answer on Stackoverflow
Solution 10 - AngularAbhishek Kumar PandeyView Answer on Stackoverflow