RC5로 업그레이드 한 후이 오류가 발생하기 시작했습니다.
ngModel cannot be used to register form controls with a parent formGroup
directive.
Try using formGroup's partner directive "formControlName" instead. Example:
<div [formGroup]="myGroup">
<input formControlName="firstName">
</div>
In your class:
this.myGroup = new FormGroup({
firstName: new FormControl()
});
Or, if you'd like to avoid registering this form control,
indicate that it's standalone in ngModelOptions:
Example:
<div [formGroup]="myGroup">
<input formControlName="firstName">
<input [(ngModel)]="showMoreControls" [ngModelOptions]="{standalone: true}">
</div>
RC5에서는 두 가지가 더 이상 함께 사용할 수없는 것처럼 보이지만 대체 솔루션을 찾을 수 없습니다.
다음은 예외를 생성하는 구성 요소입니다.
<select class="field form-control" [formGroup]="form" [(ngModel)]="cause.id" [name]="name">
<option *ngFor="let c of causes" [value]="c.text">{{c.text}}</option>
</select>
FormsModule
와ReactiveFormsModule
?