我有一个自定义元素:
<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 时,我得到一个错误消息:
错误: 没有名称为: 调查类型
我试图添加 ngDefaultControl
,但没有成功。
似乎是因为没有输入/选择... 我不知道该怎么办。
我希望将我的点击绑定到这个 formControl,以便当有人点击整个卡片时,将我的“类型”推入 formControl。有可能吗?