在Angular 2表单中,尝试通过ngSubmit获取数据.我可以在我的表单组件中同时分配ngModel和ngControl属性而没有问题,但是在子组件MyInput中,我无法在没有"无提供程序错误"的情况下分配ngControl.Plunker在这里http://plnkr.co/edit/LauhEz6vMaEmIg0hceoj?p=preview
directives: [CORE_DIRECTIVES, FORM_DIRECTIVES, MyInput], template: `Form Values {{data}}`
子组件模板:
@Component({ selector: 'my-input', directives: [FORM_DIRECTIVES], template: `如果我添加此错误
[ngControl]="props.id"我需要从表单传递给Sub Component吗?