我正在使用 Ionic 2,并且自 2.0.0 版以来在提供程序/注入方面存在一些问题。我不断收到的错误如下(使用不同的提供者,而不仅仅是这个):
未捕获的错误:无法解析 LoginRedirectService 的所有参数:(App、?、AlertController)。
解决我的提供程序的注入似乎存在问题,即使它们都用@Injectable 装饰。
一个文件
@Injectable()
export class LoginRedirectService {
constructor(
public app:App,
//another provider, needed within this one - this cannot be resolved
public authService: AuthenticationService,
public alert:AlertController
)
//...
}
不同的文件
@Injectable()
export class AuthenticationService {
constructor(public dataService:DataService){
//...
}
}
//...
等等。
我还在 app.module.ts 中添加了所有提供程序,按照它们必须注入的顺序:
//Ordered by dependencies, bottom is the most dependent on others
providers: [
HttpModule,
JsonpModule,
RssService,
EmergencyEmailService,
InAppBrowserService,
ExternalBrowser,
AppLauncherService,
LauncherPlaner,
LauncherSkype,
ConnectivityService,
MockRemoteDataService,
SoniaMirthRemoteDataService,
DataService,
AuthenticationService,
LoginRedirectService,
NewsStreamService,
SoniaBootstrapService
]
我的项目结构如下所示:
- 源代码
- 应用程序
- app.module.ts
- app.component.ts
- 资产
- 页面
- 提供者
- 子文件夹
- ...
- 应用程序
- package.json 等
我尝试在需要它们的类的构造函数中显式调用@Inject,但也没有成功。
我真的不知道该怎么做,感谢任何帮助,谢谢