Hi Jenny,

I think you need to specify how your service is provided: see the providers 
section of the angular docs. <https://angular.io/guide/providers>

For instance, to make your service accessible from anywhere in your 
application you could add this in @Injectable :

@Injectable({
providedIn: 'root'
})

export class APIService 

Regards,
Arnaud.

Le lundi 3 décembre 2018 14:54:12 UTC+1, Jenny a écrit :
>
> Hi,
>
> How to fix this error in Angular 7 occurs when try to retrieve data from 
> web apis?
>
> ERROR Error: Uncaught (in promise): Error: 
> StaticInjectorError(AppModule)[AgentcategorylistingComponent -> 
> ApiService]: 
>   StaticInjectorError(Platform: core)[AgentcategorylistingComponent -> 
> ApiService]: 
>     NullInjectorError: No provider for ApiService!
> Error: StaticInjectorError(AppModule)[AgentcategorylistingComponent -> 
> ApiService]: 
>   StaticInjectorError(Platform: core)[AgentcategorylistingComponent -> 
> ApiService]: 
>     NullInjectorError: No provider for ApiService!
>
> AgentcategorylistingComponent >> is a Component
> ApiService  >> is a Service
>

-- 
You received this message because you are subscribed to the Google Groups 
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to