1

我正在使用angular2-busyAngular 4 项目。当我使用该ngBusy指令时,我只收到默认消息,没有包含背景的动画。我正在将busy.css文件导入到 my 中index.html,并同时导入了BusyModuleBroswerAnimationModule.

这是我使用它的方式:

 this.busy = this.route.paramMap.switchMap((params: ParamMap) => 
 this.httpService.getEventHistory(+params.get('site_no')))
.subscribe(events => {this.events = events}); 

我不知道这是否相关,但即使在数据加载后,“请稍候”消息仍保留在屏幕上。

编辑:我将 CSS 链接从index.html文件移动.angular-cli.jsonstyles. 我仍然面临同样的问题。

这是我尝试使用的包: https ://www.npmjs.com/package/angular2-busy

4

1 回答 1

1

我最终只是手动将样式复制到我的全局styles.css文件中。不理想,但它有效。

于 2017-07-20T21:55:53.837 回答