angular2将ngModel传递给子组件

问题描述 投票:7回答:3

我有ParentComponent和ChildComponent,我需要将ParentComponent中的ngModel传递给ChildComponent。

// the below is in ParentComponent template
<child-component [(ngModel)]="valueInParentComponent"></child-component>

如何在ChildComponent中获取ngModel的值并进行操作?

angular angular2-components angular2-ngmodel
3个回答
19
投票

您需要在子类中实现ControlValueAccessor。它将您的组件定义为“具有值”,可以使用角度方式绑定。

在这里阅读更多相关信息:http://blog.thoughtram.io/angular/2016/07/27/custom-form-controls-in-angular-2.html


1
投票

对于Parent - > Child,请使用@Input

对于Child - > Parent,请使用@Output

所以要同时使用:

在父组件中

打字稿:

  onValueInParentComponentChanged(value: string) {
    this.valueInParentComponent = value;
  }

HTML

<child-component 
 (onValueInParentComponentChanged)="onValueInParentComponentChanged($event)"
 [valueInParentComponent]="valueInParentComponent">
</child-component>

在子组件中

打字稿:

export class ChildComponent {  
   @Input() valueInParentComponent: string;
   @Output() onValueInParentComponentChanged = new EventEmitter<boolean>();
} 

onChange(){
  this.onValueInParentComponentChanged.emit(this.valueInParentComponent);
}

HTML

<input type="text" [(ngModel)]="valueInParentComponent"   
    (ngModelChange)="onChange($event)"/>

完整的例子

https://plnkr.co/edit/mc3Jqo3SDDaTueNBSkJN?p=preview

其他实现方法:

https://angular.io/docs/ts/latest/cookbook/component-communication.html


0
投票

听起来你正在尝试包装表单控件。我写了一个图书馆来帮助你做到这一点! s-ng-utils有一个超类用于你的父组件:WrappedFormControlSuperclass。你可以像这样使用它:

@Component({
  template: `
    <!-- anything fancy you want in your parent template -->
    <child-component [formControl]="formControl"></child-component>
  `,
  providers: [provideValueAccessor(ParentComponent)],
})
class ParentComponent extends WrappedFormControlSuperclass<ValueType> {
  // This looks unnecessary, but is required for Angular to provide `Injector`
  constructor(injector: Injector) {
    super(injector);
  }
}

这假设<child-component>有一个ControlValueAccessor,正如@Amit的回答所暗示的那样。如果您自己编写<child-component>s-ng-utils中还有一个超类帮助:FormControlSuperclass

© www.soinside.com 2019 - 2024. All rights reserved.