我不明白为什么ngOnChanges
只触发一次。最初设置时。
import { Component, OnInit, Input, SimpleChanges, OnChanges } from '@angular/core';
@Component({
selector: 'app-fixed-decimals-input',
templateUrl: './fixed-decimals-input.component.html',
styleUrls: ['./fixed-decimals-input.component.scss'],
})
export class FixedDecimalsInputComponent implements OnInit, OnChanges {
@Input() value: number;
constructor() {}
ngOnInit() {}
ngOnChanges(changes: SimpleChanges) {
console.log(changes);
}
}
// html file
<input name="value" [(ngModel)]="value" />
值的变化不会触发ngOnChanges
任何想法?