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.
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!
You need to provide the DecimalPipe in the Module that provides your Service
for example, if your service is "providedIn: 'root'" then you should provide the DecimalPipe in your AppModule like that:
import {DecimalPipe} from '@angular/common';
@NgModule({
declarations: [
AppComponent,
],
imports: [ ],
providers: [DecimalPipe],
exports: [],
bootstrap: [AppComponent]
})
export class AppModule {
}