*ngFor 在我添加 bootstrap 之前一直在工作,现在一切都坏了

*ngFor was working before I added bootstrap, and now everything is broken

属性 绑定 ngForOf 未被嵌入式模板上的任何指令使用。确保 属性 名称拼写正确并且所有指令都列在 "@NgModule.declarations"

<div *ngFor="let post of posts" class="post-preview">
<h1 (click)="goToPost(post)" class="post-title">{{post.title}}</h1>
<p class="post-description">{{post.description}}</p>  </div>

在我使用

添加 bootstrap 样式之前一切正常
npm i -s bootstrap

添加bootstrap后;我将 imports: [CommonModule, ...], 添加到我的 home 模块,一切又恢复正常了。 在添加 bootstrap 之前,我刚刚在 app.module.ts

中导入了 CommonModule