Answers for "angular on chnage"

1

angular input change event

<input type="text" [ngModel]="mymodel" (ngModelChange)="valuechange($event)" />
{{mymodel}}

valuechange(newValue) {
  mymodel = newValue;
  console.log(newValue)
}
Posted by: Guest on April-29-2021
0

angular onChange onChanges SimpleChanges

export class MyClassName implements OnInit,OnChanges {
 @Input() documents: Document[] = [];
.....
ngOnChanges(changes: SimpleChanges){
    console.log("changes ", changes)
    if(changes.documents){
      console.log("changes2 ", changes)
    }
  }
Posted by: Guest on September-14-2021

Browse Popular Code Answers by Language