1

我不明白为什么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 任何想法?

4

1 回答 1

4

ngOnChanges仅当从父组件更改时才会触发@Input(),而不是在子组件中更改它时触发。

于 2019-07-04T14:37:25.247 回答