gpt4 book ai didi

Angular Material - 执行模糊功能

转载 作者:行者123 更新时间:2023-12-05 01:15:13 25 4
gpt4 key购买 nike

我有一个 <mat-select>元素,我想对元素的模糊执行一个函数。

当前函数在选择更改时执行:

<mat-form-field fxFlex>
<mat-label>SSR Status</mat-label>
<mat-select [formControl]="ssrStatuses" multiple (selectionChange)="filtersUpdated()" [(value)]="selectedSsrStatuses">
<mat-option *ngFor="let ssrStatus of ssrStatusList" [value]="ssrStatus.id">{{ssrStatus.label}}</mat-option>
</mat-select>
</mat-form-field>

我在 Angular Material 垫选择文档中看不到任何关于模糊或焦点的提及。 These docs关于 Angular 4 提及 (blur)="myMethod()"但这对我的 <mat-select> 不起作用.如何在 <mat-select> 的模糊上执行函数?

最佳答案

如果仍然是实际的,尝试使用 closed 事件:

<mat-select (closed)="someMethod()">
<mat-option></mat-option>
</mat-select>

关于Angular Material <mat-select> - 执行模糊功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56551817/

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