我正在使用angular2-busy
一个Angular 4项目。当我使用ngBusy
指令时,我只获得默认消息,没有包含背景的动画。我正在busy.css
导入index.html
文件并导入BusyModule
和BroswerAnimationModule
。
以下是我使用它的方式:
this.busy = this.route.paramMap.switchMap((params: ParamMap) =>
this.httpService.getEventHistory(+params.get('site_no')))
.subscribe(events => {this.events = events});
我不知道这是否相关,但即使数据加载后,“请等待”消息也会保留在屏幕上。
编辑:我将index.html
文件中的CSS链接移动到.angular-cli.json
下的styles
文件中。我仍然面临同样的问题。
这是我尝试使用的包: https://www.npmjs.com/package/angular2-busy
答案 0 :(得分:1)
我最终只是手动将样式复制到我的全局styles.css
文件中。不理想,但它的工作原理。