使用Angular从弹出式模式按钮删除时,删除表中的特定选定行可以通过以下步骤实现:
<table>
<tr *ngFor="let row of data">
<td>{{ row.name }}</td>
<td>{{ row.age }}</td>
<td><button (click)="deleteRow(row)">删除</button></td>
</tr>
</table>
export class YourComponent {
data: any[];
constructor() {
this.data = [
{ name: 'John', age: 25 },
{ name: 'Jane', age: 30 },
{ name: 'Bob', age: 35 }
];
}
deleteRow(row: any) {
const index = this.data.indexOf(row);
if (index !== -1) {
this.data.splice(index, 1);
}
}
}
这样,当用户点击某一行的删除按钮时,该行将从表格中删除。
关于Angular的更多信息和学习资源,你可以参考腾讯云的Angular产品介绍页面:Angular产品介绍
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云