在 parent.component.html
中我有以下HTML
<button type="button" class="btn btn-secondary (click)="AddComponentAdd()">Address</button>
<app-addresse *ngFor="let addres of collOfAdd" [add]="addres"></app-addresse>
和 parent.component.ts
中private collOfAdd: Array<AddresseComponent> = [];
AddComponentAdd() {
this.collOfAdd.push(AddresseComponent);
}
和 addresse.component.ts
中 @Input() add: string;
如何通过单击父组件中存在的按钮,使组件<app-addresse>
在父组件中多次出现?
答案 0 :(得分:1)
我已经为您的问题创建了一个堆栈闪电弹,请检查以下网址: https://stackblitz.com/edit/angular-tihubf
在此参考资料中,您可以找到单击按钮多次加载的hello.component。
答案 1 :(得分:0)
我还创建了一个stackblitz链接。 https://stackblitz.com/edit/angular-lnyec5