当前位置:  开发笔记 > 编程语言 > 正文

Angular 2 Forms - 在子组件级别分配ngControl

如何解决《Angular2Forms-在子组件级别分配ngControl》经验,为你挑选了0个好方法。

在Angular 2表单中,尝试通过ngSubmit获取数据.我可以在我的表单组件中同时分配ngModel和ngControl属性而没有问题,但是在子组件MyInput中,我无法在没有"无提供程序错误"的情况下分配ngControl.Plunker在这里http://plnkr.co/edit/LauhEz6vMaEmIg0hceoj?p=preview

    directives: [CORE_DIRECTIVES, FORM_DIRECTIVES, MyInput],
template: ` 
In Form:
Classes: {{spy.className}}

In Component:
In Component:
Form Values {{data}}
`

子组件模板:

@Component({
selector: 'my-input',
directives: [FORM_DIRECTIVES],
template: ` 
            

如果我添加此错误

 [ngControl]="props.id"  

我需要从表单传递给Sub Component吗?

推荐阅读
李桂平2402851397
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有