如果'app-fixed-topbar'是Angular组件,请验证它是否属于此模块

时间:2019-05-08 06:11:13

标签: angular lazy-loading

如果“ app-fixed-topbar”是Angular组件,则请验证它是否属于此模块。 我得到这个错误。 假设我加入了“ CUSTOM_ELEMENTS_SCHEMA”,但没有得到“ app-fixed-topbar”,这对我来说是不可见的

2 个答案:

答案 0 :(得分:0)

在模块中添加声明组件,

@NgModule({
  declarations: [FixedTopbarComponent],
  imports: [ ....],
  ... 
  ...
})
export class YourModule { }

答案 1 :(得分:0)

如果您在其模块中使用该组件,则必须如图所示将其添加到声明中,

    @NgModule({
      declarations: [FixedTopbarComponent],
      imports: [ ....],
      ... 
      ...
    })
    export class ModuleName{ }

如果您在模块的外部使用该组件,则将其添加到声明以及导出中,如图所示,

        @NgModule({
          declarations: [FixedTopbarComponent],
          exports: [FixedTopbarComponent],
          imports: [ ....],
          ... 
          ...
        })
        export class ModuleName{ }