问题描述:
在Angular的应用程序中使用旋转动画(Spinner),可能会遇到一个问题,隐藏函数在调用时没有生效。
例如:
component.ts文件中:
showSpinner = false;
hideSpinner() {
this.showSpinner = false;
}
component.html文件中:
在这种情况下,隐藏函数调用后,旋转动画仍然继续显示。
解决方案:
这个问题的解决方案是将旋转动画的显示和隐藏控制放到共享服务中。
例如:
loader.service.ts文件中:
import { Injectable } from '@angular/core';
import { BehaviorSubject } from 'rxjs';
@Injectable({
providedIn: 'root'
})
export class LoaderService {
public isLoading: BehaviorSubject = new BehaviorSubject(false);
constructor() { }
show() {
this.isLoading.next(true);
}
hide() {
this.isLoading.next(false);
}
}
component.ts文件中:
import { Component } from '@angular/core';
import { LoaderService } from './loader.service';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
constructor(private loaderService: LoaderService) {}
showLoadingIndicator() {
this.loaderService.show();
setTimeout(() => {
this.loaderService.hide();
}, 3000);
}
}
component.html文件中:
这个解决方案中,showLoadingIndicator函数调用show函数来显示旋转动画,并在3秒钟后调用hide函数来隐藏动画。
此外,在component.html文件中,使用Async管道订阅LoaderService的isLoading属性,根据其值来控制动画状态。
最后,应确保在AppModule中
上一篇:Angular选择中取消选择项目
下一篇:Angular循环遍历图片