我正在尝试使用ngFor遍历列表中的项目。但是,我在浏览器上收到此警告,并且列表未显示。我该如何解决?我已经将BrowserModule
和CommonModule
添加到了@NgModule
中的app.module.ts
导入中。这不能解决问题。
app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { RouteReuseStrategy } from '@angular/router';
import { IonicModule, IonicRouteStrategy } from '@ionic/angular';
import { SplashScreen } from '@ionic-native/splash-screen/ngx';
import { StatusBar } from '@ionic-native/status-bar/ngx';
import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';
import { CommonModule } from "@angular/common"; //if we want to use ngFor and other types //then we need to include common module to be able to use it
@NgModule({
declarations: [AppComponent],
entryComponents: [],
imports: [
BrowserModule,
CommonModule,
IonicModule.forRoot(),
AppRoutingModule
],
providers: [
StatusBar,
SplashScreen,
{ provide: RouteReuseStrategy, useClass: IonicRouteStrategy }
],
bootstrap: [AppComponent]
})
export class AppModule {}
workoutplan.page.html
<ion-header>
<ion-toolbar>
<ion-title>workoutplan !!</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
<ion-list>
<ion-item *ngFor ="let workoutplan of workoutPlans">
{{workoutplan.title}}
</ion-item>
</ion-list>
</ion-content>
答案 0 :(得分:1)
此错误的唯一原因可能是在不属于*ngFor
的组件内部使用AppModule
。我假设您在组件中使用*ngFor
,该组件已向其他模块(不是AppModule或根模块)注册。
只需在该特定模块中导入CommonModule
并将其添加到imports
数组中即可。
import { CommonModule } from '@angular/common';
imports: [CommonModule]