在Angular 7中,你可以使用RxJS Observables和拦截器来实现等待函数。下面是一个示例代码:
首先,创建一个等待服务(wait.service.ts):
import { Injectable } from '@angular/core';
import { Subject } from 'rxjs';
@Injectable({
providedIn: 'root'
})
export class WaitService {
private waitSubject = new Subject();
public wait$ = this.waitSubject.asObservable();
show() {
this.waitSubject.next(true);
}
hide() {
this.waitSubject.next(false);
}
}
接下来,创建一个拦截器(wait.interceptor.ts):
import { Injectable } from '@angular/core';
import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
import { Observable } from 'rxjs';
import { finalize } from 'rxjs/operators';
import { WaitService } from './wait.service';
@Injectable()
export class WaitInterceptor implements HttpInterceptor {
constructor(private waitService: WaitService) {}
intercept(request: HttpRequest, next: HttpHandler): Observable> {
this.waitService.show();
return next.handle(request).pipe(
finalize(() => {
this.waitService.hide();
})
);
}
}
接下来,将拦截器添加到应用程序的提供者列表中(app.module.ts):
import { NgModule } from '@angular/core';
import { HTTP_INTERCEPTORS } from '@angular/common/http';
import { WaitInterceptor } from './wait.interceptor';
@NgModule({
...
providers: [
{
provide: HTTP_INTERCEPTORS,
useClass: WaitInterceptor,
multi: true
}
],
...
})
export class AppModule { }
现在,每当发出HTTP请求时,等待服务会显示等待状态,直到请求完成。你可以在组件中通过订阅wait$
属性来获取等待状态。
希望这个示例能帮助到你!