ng-select:如何选择具有相同标签但不同对象的多个项目

G.D*_*.D. 1 multi-select angular-ngselect dropdown angular angular-reactive-forms

我正在尝试修补 ng-select 下拉列表中的多个选定项目。我没有指定任何 bindValue,因此项目应该由对象绑定(如https://www.npmjs.com/package/@ng-select/ng-select中指定)

但是,在尝试执行此操作时,不会根据对象而是根据显示的标签来选择项目。此外,仅选择第一个标签。

示例:app.component.html

<form [formGroup]="group">
    <div class="form-group" formGroupName="school">
        <ng-select labelForId="school" placeholder="Select school" [items]="schools" formControlName="code"
            bindLabel="displayLabel" multiple="true" groupBy="city">
        </ng-select>
    </div>
</form>
Run Code Online (Sandbox Code Playgroud)

应用程序组件.ts

import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup, FormControl, Validators } from '@angular/forms';

@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
  group: FormGroup;
  schools = [];
  constructor(private fb: FormBuilder) { }

  ngOnInit() {
    this.initSchools();
    const formModel = {
      school: new FormGroup({
        code: new FormControl(null, Validators.required)
      })
    }
    this.group = this.fb.group(formModel);
    this.group.patchValue({
      school: {
        code:
          [
            {
              schoolId: 'SC003',
              displayLabel: 'Test-3 school',
              city: "City1"
            },
            {
              schoolId: 'SC005',
              displayLabel: 'Test-3 school',
              city: "City5"
            }
          ]
      }
    });
  }

  initSchools() {
    this.schools.push(
      {
        schoolId: 'SC001',
        displayLabel: 'Test-1 school',
        city: "City1"
      },
      {
        schoolId: 'SC002',
        displayLabel: 'Test-2 school',
        city: "City2"
      },
      {
        schoolId: 'SC003',
        displayLabel: 'Test-3 school',
        city: "City3"
      },
      {
        schoolId: 'SC004',
        displayLabel: 'Test-4 school',
        city: "City4"
      },
      {
        schoolId: 'SC005',
        displayLabel: 'Test-3 school',
        city: "City5"
      }
    );
  }
}
Run Code Online (Sandbox Code Playgroud)

在上面的示例中,只有 item 的对象

    {
      schoolId: 'SC003',
      displayLabel: 'Test-3 school',
      city: "City1"
    },
Run Code Online (Sandbox Code Playgroud)

被选中,

并且以下项目没有

    {
      schoolId: 'SC005',
      displayLabel: 'Test-3 school',
      city: "City5"
    }
Run Code Online (Sandbox Code Playgroud)

应该怎样做才能在下拉列表中选择这两个项目(并提供唯一的对象)。这里有什么遗漏吗?任何其他方式来实现这一目标。

此处运行示例:https ://stackblitz.com/edit/angular-szel64?file=src%2Fapp%2Fapp.component.ts

G.D*_*.D. 6

发现 ng-select 有一个 CompareWith 选项,可以让您定义一个函数来比较对象。使用它,您可以绑定对象,并根据compareWith选项提供的功能来选择它。

以下是我的更改,以防有人遇到同样的问题

应用程序组件.html

<form [formGroup]="group">
    <div class="form-group" formGroupName="school">
        <ng-select labelForId="school" placeholder="Select school" [items]="schools" formControlName="code"
            bindLabel="displayLabel" multiple="true" groupBy="city"
      [compareWith]="compareFunction">
        </ng-select>
    </div>
</form>
Run Code Online (Sandbox Code Playgroud)

应用程序组件.ts

...
  compareFunction(item, selected) {
// any logic to compare the objects and return true or false
    return item.schoolId === selected.schoolId
  }
...
Run Code Online (Sandbox Code Playgroud)