以下是一个使用Angular 6的材料数据表格和单选按钮的解决方案的示例代码:
app.component.html
的HTML文件:Angular Material Data Table with Radio Buttons
Position
{{element.position}}
Name
{{element.name}}
Weight
{{element.weight}}
app.component.ts
的TypeScript文件:import { Component } from '@angular/core';
import { MatTableDataSource } from '@angular/material/table';
export interface Element {
position: number;
name: string;
weight: number;
}
const ELEMENT_DATA: Element[] = [
{position: 1, name: 'Hydrogen', weight: 1.0079},
{position: 2, name: 'Helium', weight: 4.0026},
{position: 3, name: 'Lithium', weight: 6.941},
{position: 4, name: 'Beryllium', weight: 9.0122},
{position: 5, name: 'Boron', weight: 10.811},
];
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
displayedColumns: string[] = ['select', 'position', 'name', 'weight'];
dataSource = new MatTableDataSource(ELEMENT_DATA);
selectedRow: Element;
selectRow(row: Element) {
this.selectedRow = row;
}
}
app.module.ts
中导入Angular Material模块:import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { MatTableModule } from '@angular/material/table';
import { MatRadioModule } from '@angular/material/radio';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
MatTableModule,
MatRadioModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
确保已安装Angular CLI,并在终端中运行以下命令:
ng serve
打开浏览器并访问http://localhost:4200
,你将看到一个带有单选按钮的材料数据表格。当你选择一行时,该行将被高亮显示。