我正在使用 Angular 2 @Input 属性将所需的数值传递给这样的子组件。
父组件:
@Component({
selector: 'test-parent',
template: '<button (click)="raiseCounter()">Click me!</button><test-child [value]="counter"></test-child>'
})
export class ParentComponent {
public counter: number = 0;
raiseCouner() {
this.counter += 1;
this.counter += 1;
this.counter += 1;
}
}
子组件:
@Component({
selector: 'test-child'
});
export class ChildComponent implments OnChanges {
@Input() value: number = 0;
ngOnChanges() {
if (this.value) {
this.doSomeWork();
}
}
doSomeWork() {
console.log(this.value);
}
}
在这种情况下,OnChanges 生命周期挂钩仅触发一次而不是 3 次,表明输入值从 0 更改为 3。但是我需要在每次值更改时触发它 (0 -> 1, 1 -> 2 , 2 -> 3 等)。有没有办法做到这一点?
谢谢。