lazyload angular 上的通用或浏览器模块

common or browser module on lazyload angular

我正在使用延迟加载,但在打开子组件时出现此错误

core.js:10144 NG0303: Can't bind to 'ngForOf' since it isn't a known property of 'div'.

我看过很多文章,有说我会添加Common ModuleBrowser Module我已经在app module中添加了这些模块但是没有区别我也已尝试将模块添加到 system.module 但不幸的是没有区别,我应该在哪里添加这些模块?

应用模块

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { CommonModule } from '@angular/common';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { SystemModule } from './view/system/system.module';

@NgModule({
  declarations: [
    AppComponent,
  ],
  imports: [
    CommonModule,
    BrowserModule,
    AppRoutingModule,
    BrowserAnimationsModule,
    SystemModule,
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

系统模块

import { NgModule } from '@angular/core';
import { SystemRoutingModule } from './system-routing.module';

import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { SystemComponent } from './system.component';
import { HomeComponent } from './components/home/home.component';
import { ChatComponent } from './components/chat/chat.component';
@NgModule({
  declarations: [
    SystemComponent,
    HomeComponent,
    ChatComponent
  ],
  imports: [
    NgbModule,
    SystemRoutingModule,
  ],
  exports: [
      HomeComponent,
      ChatComponent
  ],
  providers: [],
})
export class SystemModule { }

需要将 CommonModule 导入到声明组件的模块中。

这意味着当延迟加载你的模块时,你需要导入它们。

将它添加到您的 SystemModule 应该可以解决问题。如果不是,请提供一个可重现的示例来说明问题(您可以使用 Stackblitz 来做到这一点)。