我正在使用angular2-busy
Angular 4 项目。当我使用该ngBusy
指令时,我只收到默认消息,没有包含背景的动画。我正在将busy.css
文件导入到 my 中index.html
,并同时导入了BusyModule
和BroswerAnimationModule
.
这是我使用它的方式:
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.json
到styles
. 我仍然面临同样的问题。
这是我尝试使用的包: https ://www.npmjs.com/package/angular2-busy