如何在同一个地方加载另一个组件角度5?

时间:2018-06-03 00:09:05

标签: angular

我想要的只是当我点击“咨询”时显示一个表格,其中包含用户的详细信息而不是表格,当我点击删除时,如果可能的话,该行将被删除而不刷新,我是什么这两种情况应该做什么?感谢

Dashboard

1 个答案:

答案 0 :(得分:1)

这样做, 在ts:

userList: Array<User> = new Array<User>();
userList.push(user)
...

onDelete(index){
    this.userList.splice(index, 1);
}

in html:

<div *ngFor="let user of userList; let i = index">
    <h2>{{ user.name }}</h2>
    <button (click)="onDelete(i)">delete</button>
</div>