admin管理员组文章数量:1344955
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 badges1 Answer
Reset to default 9I 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
本文标签: javascriptAngular matselect get the selected option data objectStack Overflow
版权声明:本文标题:javascript - Angular mat-select get the selected option data object - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743795557a2540362.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论