要在Angular Material表格中使用Mat Row点击事件和Mat Cell中的按钮点击事件,可以按照以下步骤进行操作:
ng add @angular/material
Name
{{element.name}}
Age
{{element.age}}
import { Component } from '@angular/core';
@Component({
selector: 'app-table',
templateUrl: './table.component.html',
styleUrls: ['./table.component.css']
})
export class TableComponent {
// 表格数据源
dataSource = [
{ name: 'John', age: 25 },
{ name: 'Jane', age: 30 },
{ name: 'Bob', age: 35 }
];
// 定义表格列
displayedColumns: string[] = ['name', 'age'];
// MatRow点击事件处理程序
onRowClicked(row: any) {
console.log('Row clicked: ', row);
}
}
// Mat Cell按钮点击事件处理程序
onButtonClick(element: any) {
console.log('Button clicked for: ', element);
}
通过以上步骤,就可以在Angular Material表格中使用Mat Row点击事件和Mat Cell中的按钮点击事件了。