无法绑定到“ ngForOf”,因为它不是“ ion-item”的已知属性

时间:2020-09-20 05:20:11

标签: angular ionic-framework ionic4 ngfor

我正在尝试使用ngFor遍历列表中的项目。但是,我在浏览器上收到此警告,并且列表未显示。我该如何解决?我已经将BrowserModuleCommonModule添加到了@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>

1 个答案:

答案 0 :(得分:1)

此错误的唯一原因可能是在不属于*ngFor的组件内部使用AppModule。我假设您在组件中使用*ngFor,该组件已向其他模块(不是AppModule或根模块)注册。

只需在该特定模块中导入CommonModule并将其添加到imports数组中即可。

import { CommonModule } from '@angular/common';

imports: [CommonModule]