gpt4 book ai didi

棱 Angular 分明。来自 MatSelectionListChange 事件的值未定义

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

我正在尝试获取列表中已更改元素的值,但是当检查的属性正确时,我总是得到未定义的值。
HTML

<div>
<mat-selection-list #costUnits
[(ngModel)]="selectedCostUnits"
(selectionChange)="onSelectionChange($event)"
>
<mat-list-option *ngFor="let label of labels" selected="true">
{{ label }}
</mat-list-option>
</mat-selection-list>
</div>
TS
  onSelectionChange(event: MatSelectionListChange) {
console.log(event)
}
例如:
我在已检查的列表中的一个元素上单击了两次并获得了以下输出。
console.log output

最佳答案

我知道了。该值不受约束。组件的正确代码是:

<mat-list-option 
*ngFor="let label of labels"
selected="true"
[value]="label"
>
{{ label }}
</mat-list-option>

关于棱 Angular 分明。来自 MatSelectionListChange 事件的值未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61119452/

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