web-dev-qa-db-ja.com

Angular 5のMat-Selectオプションで選択した値のIDを取得する方法

Mat-selectで選択したオプション値のIDを取得する方法angular 5. onchangeeventで選択したオプションの値のみを取得しますが、選択したオプション値のIDを取得する方法はあります。

 client.component.html
<mat-form-field>
    <mat-select placeholder="Client*" #clientValue  (change)="changeClient($event)">
    <mat-option  *ngFor="let client of clientDetails"   [value]="client.clientName">
      {{client.clientName |  json}}
    </mat-option>
  </mat-select>
</mat-form-field>

client.component.ts file
export class Client{
     changeClient(event){
     console.log(event);
 }
}
11
AtmanSangeetha

そのために必要なこと:

変化する (change)="changeClient($event)"から(change)="changeClient($event.value)"

から[value]="client.clientName"から[value]="client.id"

<mat-form-field>
    <mat-select placeholder="Client*" #clientValue  (change)="changeClient($event.value)">
    <mat-option  *ngFor="let client of clientDetails"   [value]="client.id">
      {{client.clientName}}
    </mat-option>
  </mat-select>
</mat-form-field>

WORKING DEMO

22
Vivek Doshi

質問はAngular 5に固有ですが、Angularの新しいバージョンでここに来る他の人にとっては、(change)イベントはmat-selectでは機能しません。

Angular 6では、(change)イベントが(selectionChange)に変更されました。

だから:

<mat-form-field>
    <mat-select placeholder="Client*" #clientValue  (selectionChange)="changeClient($event.value)">
    <mat-option  *ngFor="let client of clientDetails" [value]="client.id">
      {{client.clientName}}
    </mat-option>
  </mat-select>
</mat-form-field>

そしてコンポーネントで:

changeClient(value) {
    console.log(value);
}

この回答 および ドキュメント から。

15
Stack Underflow

ViewChildデコレータと 'html-intrusive'の少ないngAfterViewInitを使用して、mat-selectの値の変更をサブスクライブすることもできます。

以下に例を示します。

[HTML]

<mat-form-field [floatLabel]="auto">
    <mat-label>Type</mat-label>
        <mat-select #matSelect required> //the #matSelect is important here
            <mat-option *ngFor="let type of types" [value]="type.value">
                {{type.viewValue}}
            </mat-option>
    </mat-select>
</mat-form-field>

[TS]

 import { Component, ViewChild, AfterViewInit } from '@angular/core';
 import { MatSelect } from '@angular/material';

 @Component({
        selector: 'app-export-security-pack-material',
        templateUrl: './export-security-pack-material.component.html',
        styleUrls: ['./export-security-pack-material.component.scss']
 })

 export class ExportSecurityPackMaterialComponent implements AfterViewInit {

    constructor() {}

    types: Object[] = [
        { value: 'example-value-0', viewValue: 'ExampleViewValue0' 
        },
        { value: 'example-value-1', viewValue: 'ExampleViewValue1' }
    ];

    @ViewChild('matSelect') matSelect: MatSelect;
       //Reference Variable //variable Name //Type

    ngAfterViewInit() {
        this.matSelect.valueChange.subscribe(value => {
            console.log(value);
        });
    }
 }

これにより、セレクターの値を変更するたびに、開発コンソールCtrl+Shift+IまたはF12に値が記録されます。

または、onchangeが必要ない場合は文字通りこれを行うことができます:

[HTML]

<mat-form-field [floatLabel]="auto">
    <mat-label>Type</mat-label>
        <mat-select [(value)]="matSelectValue" required> <---
            <mat-option *ngFor="let type of types" [value]="type.value">
                {{type.viewValue}}
            </mat-option>
    </mat-select>
</mat-form-field>
0
Noé KlK