我已将 ng-select 用于多个选项,我想在 ng-select 上填充一些值。我已经在 ngmodel 中传递了数组值,但它不起作用。请指导实现这一点
这是我的代码
公司Arr = [10];公司列表 = 数组
<ng-select [items]="companyList" bindLabel="brand_name" bindValue="id"
[multiple]="true" [(ngModel)]="companyArr" (change)="onSelectCompany($event)" name="companyArr" [ngClass]="{ 'is-invalid': f.submitted && companyArr.invalid }" required>
</ng-select>