I have implemented lazy loading in my application. One of my services needs to include DecimalPipe.
service --> shared module --> App module
This is my structure. I've already included "CommonModule" in app.module.ts and My service also needs Decimal Pipe.
- Including "Decimal Pipe" in my shared module gives the below error:
Type DecimalPipe is part of the declarations of 2 modules: CommonModule and SharedModule! Please consider moving DecimalPipe to a higher module that imports CommonModule and SharedModule. You can also create a new NgModule that exports and includes DecimalPipe then import that NgModule in CommonModule and SharedModule.
So Since it is already part of Commons Module, why doesn't it take Decimal pipe from Commons Module. ? If It is not declared, below error is shown
NullInjectorError: No provider for DecimalPipe!
Please let me know how to handle this error. Thanks in advance!
CommonModule
export theDecimalPipe
to allow other modules to access it? Can you show us an abbreviated code snippet of the modules so we can see how you are exporting/importing? – nephiw