angular2将ngModel传递给子组件

前端之家收集整理的这篇文章主要介绍了angular2将ngModel传递给子组件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有ParentComponent和ChildComponent,我需要将ParentComponent中的ngModel传递给ChildComponent.
// the below is in ParentComponent template
<child-component [(ngModel)]="valueInParentComponent"></child-component>

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

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

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

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

猜你在找的Angularjs相关文章