我有一个来自静态AppConfigService的配置文件的值。 描述如下:
参考代码/文章:https://blogs.msdn.microsoft.com/premier_developer/2018/03/01/angular-how-to-editable-config-files/
import { Injectable } from '@angular/core';
import { AppConfig } from './app-config';
import { HttpClient } from '@angular/common/http';
import { environment } from 'src/environments/environment';
@Injectable()
export class AppConfigService {
static settings: AppConfig;
constructor(private http: HttpClient) { }
load() {
console.log('is this getting fired before routing module check?');
const jsonFile = `assets/config/config.${environment.name}.json`;
return new Promise<void>((resolve, reject) => {
this.http.get(jsonFile)
.toPromise()
.then((response: AppConfig) => {
AppConfigService.settings = <AppConfig>response;
console.log(AppConfigService.settings);
resolve();
})
.catch((response: any) => {
reject(`Could not load file '${jsonFile}':
${JSON.stringify(response)}`);
});
});
}
}
此配置已加载到我的APP_INITIALIZER
的{{1}}
app.module.ts
但是我名为 providers: [
AppConfigService,
{
provide: APP_INITIALIZER,
useFactory: (appConfigService: AppConfigService) => () => {appConfigService.load() },
deps: [AppConfigService], multi: true
}
],
的路由模块正在从我的AppRoutingModule
变量中读取某些内容,这很疯狂,未定义。我的应用程序崩溃。我希望AppConfigService.settings
在APP_INITIALIZER
之前触发,但事实并非如此:
AppRoutingModule
Uncaught TypeError: Cannot read property 'oldUrl' of undefined
是oldUrl
的属性。我检查了AppConfigService.settings
是否已设置,是否正确,路由模块启动后是否正确,但这不是我想要的。
我检查了其他一些来源以寻求帮助。我已经使用以下内容作为解决方法:https://github.com/angular/angular/issues/14615和https://github.com/angular/angular/issues/14588
AppConfigService.settings
不幸的是,以上解决方案无法解决我的问题。我也尝试放入@component({})
class App {
constructor(router: Router, loginService: LoginService) {
loginService.initialize();
router.initialNavigation();
}
}
@NgModule({
imports: [
BrowserModule,
RouterModule.forRoot(routes, {initialNavigation: false})
],
declarations: [ App ],
bootstrap: [ App ],
providers: [ Guard, LoginService ]
})
export class AppModule {
}
,但是,那也没有帮助。
非常欢迎任何帮助。
答案 0 :(得分:0)
我已经使用NgRx解决了我的应用程序初始化和路由问题,监听了中心状态以了解何时加载系统,并在此之后激活了Route Guards。
但是对于直接解决方案,您需要在加载服务时添加Route Guard检查。因此,在您的服务中添加一个loaded: boolean
标志,并从Guard进行检查,如下所示:
https://github.com/angular/angular/issues/14615#issuecomment-352993695
使用Observables可以更好地解决此问题,并且我正在使用Facades在我的应用程序中将所有NgRx都连接在一起,以简化所有工作: https://gist.github.com/ThomasBurleson/38d067abad03b56f1c9caf28ff0f4ebd
最诚挚的问候。