4
Angular4-양식 제어를위한 값 접근자가 없음
사용자 정의 요소가 있습니다. <div formControlName="surveyType"> <div *ngFor="let type of surveyTypes" (click)="onSelectType(type)" [class.selected]="type === selectedType"> <md-icon>{{ type.icon }}</md-icon> <span>{{ type.description }}</span> </div> </div> formControlName을 추가하려고하면 오류 메시지가 나타납니다. 오류 오류 : 이름이 'surveyType'인 양식 제어에 대한 값 액세서가 없습니다. 나는 추가하려고 ngDefaultControl 성공하지 않고 . 입력 / 선택이 없기 때문에 …