7

如何获取从组件中的 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">
4

5 回答 5

7

尝试这个

<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

于 2018-09-12T06:41:30.323 回答
1

在您的代码中缺少值属性

代替

<mat-list-option *ngFor="let readingType of readingTypes">

<mat-list-option *ngFor="let readingType of readingTypes" [value]="readingType">

然后在 readingTypesSelected 中获取选定的数组,

在 [(ngModel)]="readingTypesSelected" 中提到了 readingTypesSelected

于 2020-06-25T18:13:13.347 回答
0

我在这里更新了你的 stackblitz 代码https://angular-selection.stackblitz.io

现在您可以在控制台中获取选定的值。

于 2018-09-12T06:22:19.680 回答
0
<mat-selection-list #products [(ngModel)]="selectedProducts">
    <mat-list-option *ngFor="let eachProduct of allProducts;" [value]="eachProduct">
        {{eachProduct.name}}
    </mat-list-option>
</mat-selection-list>

{{selectedProducts|json}}

在 Angular 10 中测试。主要部分是[value]="eachProduct"其他方面,它将显示null

于 2020-07-05T12:13:47.970 回答
0

这个解决方案更好

selectionChanged(event: MatSelectionListChange): void {
    this.selected = event.options.filter(o => o.selected).map(o => o.value);
}
于 2022-03-01T15:21:51.707 回答