在Angular 6中,可以通过以下步骤在编辑模式下动态添加ngFor表中的多行:
<table>
<tr *ngFor="let item of items; let i = index">
<td>{{ item.name }}</td>
<td>{{ item.age }}</td>
</tr>
</table>
items: any[] = [
{ name: 'John', age: 25 },
{ name: 'Jane', age: 30 }
];
addItem() {
this.items.push({ name: '', age: 0 });
}
<button (click)="addItem()">Add Row</button>
这样,当点击"Add Row"按钮时,将会动态添加一个新的空行到表格中。
请注意,以上示例中的代码仅为演示目的,实际应用中可能需要根据具体需求进行适当的修改和扩展。
推荐的腾讯云相关产品:腾讯云云服务器(CVM)和腾讯云数据库(TencentDB)。您可以访问腾讯云官方网站获取更多关于这些产品的详细信息和介绍:
领取专属 10元无门槛券
手把手带您无忧上云