gpt4 book ai didi

angular-material - 如何实现 Angular Material mat-select 更改事件?

转载 作者:行者123 更新时间:2023-12-04 14:37:39 26 4
gpt4 key购买 nike

我想在 Angular Material 中实现以下引导选择。如何在 bootstrap 中实现此处显示的更改事件?

<select (change)="sortByProducts($event.target.value)">
<option *ngFor="let filter of filters" [value]="filter.id">
{{filter.title}}
</option>
</select>

我如何将更改事件添加到调用 sortByProducts 函数的 Material 中,如上面所示的代码段中所做的那样?
<mat-form-field>
<mat-select>
<mat-option *ngFor="let filter of filters" [value]="filter.id">
{{filter.title}}
</mat-option>
</mat-select>
</mat-form-field>

最佳答案

您可以使用一个 selectionChange 输出:

// html
<mat-select (selectionChange)="sortByProducts($event.value)">

// ts
sortByProducts(value) {
console.log(value)
}

https://material.angular.io/components/select/api

关于angular-material - 如何实现 Angular Material mat-select 更改事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56007890/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com