当我以反应形式使用 ng-select 角度时,我收到此错误:
错误类型错误:selectedItems.map 不是函数
我有 3 个选择前两个工作得很好,但是在第三个中我得到了错误!映射项目我正在使用该函数(ng-select 在 *ngFor 内):
//for mappinig item :
mapLabelValueBS(objet) {
return objet.map(data => {
return {
id: data,
text: data.name
}
})
}
//this is the one that is causing the problem
<ng-select
[allowClear]="true"
[items]="mapLabelValueBS(filieres)"
placeholder="Filière non sélectionné"
(selected)="selecteFiliere($event)"
formControlName="filiere">
</ng-select>
我页面中的结果(当我单击该字段时,它会自动翻倍):