我有ParentComponent和ChildComponent,我需要将ParentComponent中的ngModel传递给ChildComponent.
// the below is in ParentComponent template <child-component [(ngModel)]="valueInParentComponent"></child-component>
如何在ChildComponent中获取ngModel的值并进行操作?
您需要在子类中实现ControlValueAccessor.
它将您的组件定义为“具有值”,可以使用角度方式绑定.
原文链接:https://www.f2er.com/angularjs/140975.html它将您的组件定义为“具有值”,可以使用角度方式绑定.
在这里阅读更多相关信息:http://blog.thoughtram.io/angular/2016/07/27/custom-form-controls-in-angular-2.html