3

我正在使用 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 等)。有没有办法做到这一点?

谢谢。

4

1 回答 1

1

这是预期的行为。当事件处理程序完成时,
Angular2 运行更改检测,即在 3rd 之后。 当更改检测更新绑定时,调用 then 。(click)+= 1
@Input()ngOnChanges()

于 2017-02-14T15:20:35.757 回答