首页 > 解决方案 > 从 Angular 6 mat-selection-list 获取选定值的列表

问题描述

如何获取从组件中的 Angular 材料垫选择列表中选择的所有值的列表。给出的示例显示了要在模板中显示但不在组件中显示的值。我正在尝试修改此问题中给出的解决方案,但它对我不起作用。这是我当前的代码:

模板:

<mat-selection-list #selected [(ngModel)]="readingTypesSelected" (ngModelChange)="onSelection($event)" >
  <mat-list-option *ngFor="let readingType of readingTypes">
    {{readingType.name}}
  </mat-list-option>
</mat-selection-list>

零件:

    onSelection(e, v) {

    console.log(e);
    console.log(v);    
  }

以下内容被记录到控制台:

在此处输入图像描述

我如何从中提取所选选项的实际值?

解决方案

模板代码的前两行应该是(如已接受解决方案中的 stackblitz 链接中给出的那样):

<mat-selection-list #selected (selectionChange)="onSelection($event, selected.selectedOptions.selected)" >
      <mat-list-option *ngFor="let readingType of readingTypes" [value] ="readingType">

标签: angularangular-materialangular-material-6

解决方案


尝试这个

<mat-selection-list #list [(ngModel)]="selectedOptions" (ngModelChange)="onNgModelChange($event)">
    <mat-list-option *ngFor="let shoe of typesOfShoes" [value]="shoe">
      {{shoe}}
    </mat-list-option>
</mat-selection-list>

绑定后[(ngModel)]="selectedOptions",您可以在组件中使用selectedOptions变量,该变量将包含所有选定的项目。

示例:https ://stackblitz.com/edit/angular-hdmfwi


推荐阅读