Angular 延迟加载事件 start/end 加载

Angular Lazy Loading events for start/end loading

ngModule starts/ends延迟加载时有没有事件?
我需要其中一个事件来加载一些额外的资源,比如翻译。

显示一些动画也很好,这样用户在第一次单击 LazyLoaded 路由时就知道正在加载某些内容。

是的,有两个事件RouteConfigLoadStart and RouteConfigLoadEnd可以像这样使用:

constructor(router:Router) {
  router.events.subscribe(event:Event => {
    if(event instanceof RouteConfigLoadStart) {
    }
    if(event instanceof RouteConfigLoadEnd) {
    }
  });
}