如何将默认值应用于 IgxSelectComponent

How to apply a default value to an IgxSelectComponent

使用这样的模板将默认值应用于 IgxSelectComponent 的推荐方法是什么?:

<igx-select type="string" formControlName="classification">
    <label igxLabel>Classification</label>
    <igx-select-item *ngFor="let classification of classifications$ |async" [value]="classification">
        {{classification}}
    </igx-select-item>
</igx-select>

提前致谢!

您可以使用 ngModel 指令将默认值设置为 IgxSelectComponent 并将其绑定到存储所需默认值的全局变量:

<igx-select [(ngModel)]="selected">
  <label igxLabel>Simple Select</label>
  <igx-select-item *ngFor="let item of items" [value]="item">
    {{item}}
  </igx-select-item>
</igx-select>

Here 可以找到一个简单的示例应用程序,您可以在自己这边进行测试。

此外,可以找到有关 Infragistics Select 组件的有用主题 here