Angular 2:我正在创建粘滞便笺板。因此,单击“创建注释”按钮时,我想每次添加一个注释

时间:2018-09-01 07:36:20

标签: angular angular-components

所以基本上我想每次在主组件中单击创建注释按钮时在主组件中添加注释组件。

1 个答案:

答案 0 :(得分:0)

您的主要组件中将需要一个Note数组。然后,当用户单击按钮时,可以将Note的新实例推入阵列。然后,您将创建一个新组件e。 G。 NoteComponent呈现单个Note实例并将其作为@Input。然后,在主组件模板中,您可以使用*ngFor遍历笔记:

<note [note]="note" *ngFor="let note of notes"></notes>

这些应该可以帮助您入门:

https://angular.io/guide/component-interaction

https://angular.io/guide/displaying-data