angular: Uncaught Error: Can't resolve all parameters for ...
I’m submitting a…
[x] Bug report
Current behavior
Getting an error in the browser console: "Uncaught Error: Can’t resolve all parameters for ApiService " Note: ApiService is, I guess, the name of my Service.
Expected behavior
Should inject HttpClient in my service, in developement mode and production mode
Minimal reproduction of the problem with instructions
Hi Guys…I’ve done a small angular-cli project. I’ve created 3 services that will get datas. One service is called “FakeService”, because it will provide harcoded data…The other service is called “TestService”, which has another service (ApiService) injected in its constructor. The ApiService will use HttpClient to get datas from server.
But I got the described error message when I’m using the FakeService (in developement mode)
Here is my app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
import { environment } from './../environments/environment';
import { AppComponent } from './app.component';
import { ApiService } from './services/api.service';
import { TestService } from './services/test.service';
import { FakeService } from './services/fake.service';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
HttpClientModule
],
providers: [
ApiService,
{
provide: TestService,
useClass: environment.production ? TestService : FakeService
}
],
bootstrap: [AppComponent]
})
export class AppModule { }
Here is my api.service.ts
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
export class ApiService {
constructor(private httpClient: HttpClient) {
}
get(path: string): Array<any> {
switch (path) {
case '/tests':
// this.httpClient.get(`https://localhost/poneyRacerApi/races`)
// .subscribe((response: Array<IRaceModel>) => {
// return response;
// } );
return [{name: 'London'}, {name: 'Montréal'}];
}
return [];
}
}
Here is my fake.service.ts
import { Injectable } from '@angular/core';
@Injectable()
export class FakeService {
constructor() {
}
list(): Array<any> {
return [{name: 'London'}, {name: 'Lyon'}, {name: 'Paris'}, {name: 'Montréal'}];
}
}
And Finally, here is my test.service.ts
import { Injectable } from '@angular/core';
import { ApiService } from './api.service';
@Injectable()
export class TestService {
constructor(private apiService: ApiService) {
}
list() {
console.log('Listing races');
return this.apiService.get('/tests');
}
}
As you can see in test.service.ts, I inject my other ApiService in the constructor.
As you can see in app.module.ts, I’m using TestService when I’m in production (for example, when calling ng serve --prod
) and I’m using FakeService when not in production (ng serve
)
I have no error message when calling ng serve --prod
. But I have the following error message when serving in development mode, aka when using FakeService instead of TestService (ng serve
)
Uncaught Error: Can't resolve all parameters for ApiService: (?).
at syntaxError (compiler.es5.js:1694)
at CompileMetadataResolver.webpackJsonp.../../../compiler/@angular/compiler.es5.js.CompileMetadataResolver._getDependenciesMetadata (compiler.es5.js:15925)
at CompileMetadataResolver.webpackJsonp.../../../compiler/@angular/compiler.es5.js.CompileMetadataResolver._getTypeMetadata (compiler.es5.js:15793)
at CompileMetadataResolver.webpackJsonp.../../../compiler/@angular/compiler.es5.js.CompileMetadataResolver._getInjectableMetadata (compiler.es5.js:15779)
at CompileMetadataResolver.webpackJsonp.../../../compiler/@angular/compiler.es5.js.CompileMetadataResolver.getProviderMetadata (compiler.es5.js:16070)
at compiler.es5.js:15999
at Array.forEach (<anonymous>)
at CompileMetadataResolver.webpackJsonp.../../../compiler/@angular/compiler.es5.js.CompileMetadataResolver._getProvidersMetadata (compiler.es5.js:15959)
at CompileMetadataResolver.webpackJsonp.../../../compiler/@angular/compiler.es5.js.CompileMetadataResolver.getNgModuleMetadata (compiler.es5.js:15614)
at JitCompiler.webpackJsonp.../../../compiler/@angular/compiler.es5.js.JitCompiler._loadModules (compiler.es5.js:26958)
If I remove the constructor’s parameter (private httpClient: HttpClient) in my ApiService, I have no error issue when running in developement mode (so when it uses FakeService) but I can’t use httpClient to make Http requests… I’ve followed the instructions as described in Angular HttpClient doc for the use of HttpClient.
I don’t know If it’s a true angular issue or if I’ve done something wrong… Could you please help me with this issue ?
Thank you very much for your help.
Environment
Angular version:4.4.3
Browser:
- [X] Chrome (desktop) version 60.0.3112.113
For Tooling issues:
- Node version: 8.4.0
- Platform: Windows
Others:
Visual Studio Code 1.16.1
Angular-Cli: 1.4.3
About this issue
- Original URL
- State: closed
- Created 7 years ago
- Reactions: 19
- Comments: 46 (2 by maintainers)
You are missing an
@Injectable()
annotation on yourApiService
. Support requests like these should live on StackOverflow not GitHub.After 1 day on this I realized I had removed some polyfills I didn’t think I need. This is what I was missing:
Any thoughts on adding actual useful error messages that detect common Angular pitfalls like Vue does?
@benelliott Thank you for the hint. I’m sorry but I thought it was an issue in angular. I’ve done a lot of research on StackOverflow and on Internet in general, but didn’t find a solution.,…So I thought it was an angular issue…Closing it. Thank you and sorry again
After strugling for 1 hour on this, finally, thanks to @odolha , it appears I also had removed core-js/es7/reflect. Adding it again solve the problem !
Error: Can’t resolve all parameters for Router: (?, ?, ?, ?, ?, ?, ?, ?).
I have this error in my angular4 app testing
I was missing the @ in front of Injectable(). If you get an error in an extremely simple scenario and you find nothing on the web about it, then most probably it’s too simple/stupid to be documented. Found that on my own too many times now.
For the record, I’ve just lost a full day on this error… 😭
In
main.ts
, polyfills MUST ABSOLUTELY be loaded first. Checkimport './polyfills.ts';
is your first line.
I faced the same issue and resolved in my case, I had missed @Injectable decorator in server.service.ts file
Just in case you need to see how looks my app.component.ts
@dongdongmao i had this issue many times when: 1.) forgot to use the @Injectable() in the service and 2.) when some of my angular services, modules, etc exported as
export default const foo = 123
instead ofexport const foo = 123
. The key point here is not usingdefault
as export.This can also happen when your component extends another one and you forgot to call the
super()
in your constructor.can occur also with circular dependencies (exported helper structures between files).
This was the case for me, extended a class and did not define the
constructor
at all. Thanks!@odolha this was my issue as well. Glad you spent the day and not me (only took about 20 min to find your post)
The reason I had removed the polyfill was because there is a comment in the
polyfill.ts
for that polyfill that says this:// Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove.
So, I was doing some optimizing for my aot deployment and got rid of it… completely forgetting that local development (using ng-serve) is still using JIT 😦
So, thank you sir…
I had this error message also … what resolved it for me was importing Services from the same Module with relative paths rather than using a barrel.
I finally found out what was wrong in my case as well. Given the error:
Can't resolve all parameters for PageApiService in .../services/pageService.ts: ([object Object], ?)
It looks like it is actually telling me that the place where the question mark is, has an issue. In my case I had HttpClient and a string in the url. In the hope to eventually use it within a provider and provide that string. but it looks like this not not allowed any more?
My service was:
Using inside a module like so:
It did work though…yet it does give me a warning now that it will be an error in a later version…
Okay , so I have finally decoded the error . Note that if there is any unknown import statement in any component , the entire angular app crashes , so make a note of it . I resolved this error after thinking much. Hope it helps Cajetan Rodrigues
Its clear that you are trying to inject the ordine service in the ordine component and ordine component in service. That is not possible. to instantiate the component you need the service and to instantiate the service you need the component. Please read about the dependency injection pattern.
if you have an index.ts to export your services, check the order of exports. that helped me.
In my case I was simply injecting in the constructor the Router service without using it. After deleting this, everything works fine.
I got this error when upgrading an app from angular2 to angular5. In addition to upgrading the CLI and the dependencies and devDependencies in the
package.json
, I had to update the old/tsconfig.json
, and/angular-cli.json
, to the new/tsconfig.json
,src/tsconfig.app.json
,tsconfig.spec.json
, and/.angular-cli.json
, and then calling