我在角形2中的表单组件中的组件中存在嵌套输入问题。我的mainForm的控件数组是空的 - 因此我无法在表单中使用表单验证。
我创建了一个plunkr来证明这个问题。
FormComponent
<form #mainForm="ngForm">
<customer-input ngControl="customerAccount"></customer-input>
{{mainForm | json}}
</form>
客户-输入
<div class="form-group">
<label>{{label}}</label>
<input type="text" [(ngModel)]="value" (keyup)="onKeyup($event)" #REF (change)="onChange(REF.value)" class="form-control">
</div>
有关如何将嵌套组件中的输入添加到角度2中的表单的任何帮助都非常受欢迎