Angular 5 - onclick 事件将组件附加到 div

Angular 5 - onclick event append component into div

我正在使用 Angular 5,我有这个:

// app.component.ts
import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {

  appendToContainer() {
    // Do the stuff here
    // Append PanelComponent into div#container
  }

}

现在 app.component.html

// app.component.html
<button (click)="appendToContainer()"></button>
<div id="container"></div>

最后我有了一个简单的组件

// panel.component.html
<div class="panelComponent">
  This is a panel Component html
</div>

我想做的是,每次点击 app.component.html 上的按钮时,我都需要在 app.component.html

中附加一个 panel.component

我该怎么做?

你可以使用一个 *ngFor 和一个变量来实现你想要的

//In your component
num:number=0

//You html like 
<button (click)="num++"></button>
//we create a array "on fly" and slice to get only a "num" items
<div *ngFor="let item in [0,1,2,3,4,5,6,7,8,9].slice(0,num)" class="panelComponent">
  This is a panel Component html
</div>