2
NG-CLi - 1.0.0-beta.28.3
Angular2 : 2.4.6
這裏的錯誤是我在app.module.ts功能Angular2 APP初始化[I]當NG服務使用
export function authFactory(auth : LoginService){
return auth.loginUser();
}
提供商都是這樣
{
provide: APP_INITIALIZER,
//useFactory: (auth: AuthService) =>() => auth.authUser(),
useFactory : authFactory,
deps: [LoginService],
multi: true
}
該參考正在運行直到我們從2.1.0
將angular cli
和Angular 2
升級爲2.4.6
。我們還將cli版本從beta 18
升級到28
。
現在當應用程序啓動時,它在控制檯中給出了這個錯誤,我確實看到該請求在loginUser方法中正常工作。但不知何故,它給有關在HTTP POST請求
Unhandled Promise rejection: appInits[i] is not a function ; Zone: ; Task: Promise.then ; Value: TypeError: appInits[i] is not a function
我有同樣的問題 – BILL