最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Angular mat-select get the selected option data object - Stack Overflow

programmeradmin1浏览0评论

Under my Angular 7 app , i'm using the mat-select ponent :

<mat-form-field  class="col-md-3" color="warn">
     <mat-select placeholder="Selectionner le code Edo"
                  id="codeEdo"
                  [(value)]="selectedCodeEdoValue"
                  ngDefaultControl
                  formControlName="codeEdo">
     <mat-option (onSelectionChange)="onEdoSelectionChanged(edo )"
                 *ngFor="let edo of shopsList"
                  [value]="edo.edoId">
                  {{edo.edoId}}
     </mat-option>
     </mat-select>
</mat-form-field>

My options data are the following:

let shopsList= [
  {
    'edoId': '4010',
    'storeName': 'ABBEVILLE'
  }
  ,
  {
    'edoId': '3650',
    'storeName': 'AGEN'
  }
  ,
  {
    'edoId': '3298',
    'storeName': 'AIX ALLEES PROVENCALES'
  }
];

My purpose is to get the selected object data when an option is selected , and not just the value

for example when i select the first option , i wanna get this :

result = {
    'edoId': '4010',
    'storeName': 'ABBEVILLE'
}

And not only the value '4010'

As you can see i ve tried this : (onSelectionChange)="onEdoSelectionChanged(edo )

But this fires me always two events , for the old selected option and the new selected option ,

How may i only get the new selection data ??

Under my Angular 7 app , i'm using the mat-select ponent :

<mat-form-field  class="col-md-3" color="warn">
     <mat-select placeholder="Selectionner le code Edo"
                  id="codeEdo"
                  [(value)]="selectedCodeEdoValue"
                  ngDefaultControl
                  formControlName="codeEdo">
     <mat-option (onSelectionChange)="onEdoSelectionChanged(edo )"
                 *ngFor="let edo of shopsList"
                  [value]="edo.edoId">
                  {{edo.edoId}}
     </mat-option>
     </mat-select>
</mat-form-field>

My options data are the following:

let shopsList= [
  {
    'edoId': '4010',
    'storeName': 'ABBEVILLE'
  }
  ,
  {
    'edoId': '3650',
    'storeName': 'AGEN'
  }
  ,
  {
    'edoId': '3298',
    'storeName': 'AIX ALLEES PROVENCALES'
  }
];

My purpose is to get the selected object data when an option is selected , and not just the value

for example when i select the first option , i wanna get this :

result = {
    'edoId': '4010',
    'storeName': 'ABBEVILLE'
}

And not only the value '4010'

As you can see i ve tried this : (onSelectionChange)="onEdoSelectionChanged(edo )

But this fires me always two events , for the old selected option and the new selected option ,

How may i only get the new selection data ??

Share Improve this question asked Mar 15, 2019 at 23:53 firasKoubaafirasKoubaa 6,87729 gold badges87 silver badges163 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

I think your error is with this bit of code:

[value]="edo.edoId"

Try changing it to

[value]="edo"

This will return the full object, instead of just that specific field

发布评论

评论列表(0)

  1. 暂无评论