角度2-4的组件之间的双向绑定

前端之家收集整理的这篇文章主要介绍了角度2-4的组件之间的双向绑定前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我希望子组件值绑定到父组件.如何在@Input()和[(ngModel)]不够时完成此操作?

here is a plunker

在这里你必须设置@Output并更改组件
export class CounterComponent {

  @Output('initochange') emitter: EventEmitter<string> = new EventEmitter<string>();
  @Input('inito') set setInitoValue(value) {
      this.count = value;
  }
  count: number = 0;

  increment() {
    this.count++;
    this.emitter.emit(this.count);
  }

  decrement() {
    this.count--;
    this.emitter.emit(this.count);
  }

}

这是plunker链接,请看看.

原文链接:https://www.f2er.com/angularjs/240482.html

猜你在找的Angularjs相关文章