要解决Angular Material的选择组件的selectionChange事件不触发的问题,可以按照以下步骤进行修改:
import { MatSelectModule } from '@angular/material/select';
import { SelectionChange } from '@angular/cdk/collections';
{{ option.label }}
import { Component } from '@angular/core';
import { SelectionChange } from '@angular/cdk/collections';
@Component({
selector: 'app-example',
templateUrl: './example.component.html',
styleUrls: ['./example.component.css']
})
export class ExampleComponent {
options = [
{ value: 'option1', label: 'Option 1' },
{ value: 'option2', label: 'Option 2' },
{ value: 'option3', label: 'Option 3' }
];
onSelectionChange(event: SelectionChange): void {
console.log(event.source.value);
}
}
通过以上步骤,你应该能够正确使用Angular Material的选择组件,并且selectionChange事件能够触发并处理选择变化的逻辑。