angular5给懒加载模块添加loading

在根组件的构造函数中直接执行:

this.router.events.subscribe(event=>{
      if(event instanceof RouteConfigLoadEnd) {
        this.toast.hide();
      }
      if(event instanceof RouteConfigLoadStart) {
        this.toast.loading();
      }
   });
原文地址:https://www.cnblogs.com/qianduanjingying/p/10306535.html