我的代码:
<div class="btn-group" *ngFor="let table of tables; index as i">
<label [ngModelOptions]="{standalone: true}" class="btn btn-info" [(ngModel)]="checkModel[i]" [ngClass]="checkModel[i] ? 'set' : 'reset'"
btnCheckbox tabindex="0" btnRadio="middle" role="button">{{table.number}}</label>
</div>
但是出现以下错误:
错误:多个自定义值访问器与具有未指定名称属性的表单控件匹配
解决方案::删除btnRadio="middle"