0
라우팅 파일 에 app을 구성하여 app-routing.module.ts 첫 페이지로드시 모든 모듈을로드했습니다. 조금 뒤떨어지기 때문에 마지막 모듈이로드 될 때까지로드 애니메이션을 표시하고 싶습니다. 이것이 가능한가?각도 2 - 사전로드 중로드 진행 애니메이션 실행 중
앱 routing.component.ts : 우리는 allready 재 라우팅을위한 GIF 애니메이션을 구현 한
@NgModule({
imports: [RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules })],
exports: [RouterModule]
})
.
는 app.component.ts : 나 자신에 의해 방법을 알아 냈어요
router.events.subscribe((routerEvent: Event) => {
this.checkRouterEvent(routerEvent);
});
....
checkRouterEvent(routerEvent: Event): void {
if (routerEvent instanceof NavigationStart) {
this.loading = true;
}
// this.loading is just a boolean to show <div> with animation inside or not.
if (routerEvent instanceof NavigationCancel ||
routerEvent instanceof NavigationEnd ||
routerEvent instanceof NavigationError) {
this.loading = false;
}
}