Directive doesn't work in a sub module

后端 未结 2 1326
醉话见心
醉话见心 2020-12-30 07:08

I can\'t make the directive work in a lazy loaded module. I\'ve read the documentation and I simply added the directive into declarations array of my main module. The direct

2条回答
  •  醉酒成梦
    2020-12-30 07:30

    That's because your directive is declared in AppModuleand it's only available there. If you want to use directive in both modules, you can create SharedModule and then declare and export directive from there, and then import SharedModule in your AppModule and your ChildModule:

    @NgModule({
      declarations: [ HighlightDirective ],
      exports: [ HighlightDirective ]
    })
    
    export class SharedModule {}
    

    Now you just need to add SharedModule to AppModule's and ChildModule's imports.

    Note:

    You have to remove your directive from AppModule's declarations since it can only be declared once.

提交回复
热议问题