我每10000次调用一个方法。
我想让此函数getAllNotificationsActed0()
每10秒调用一次,如果数据不在此间隔内,则不要再次调用该函数。如果在10秒钟内收到数据,则调用该函数;如果在10秒钟内未收到数据,则不要调用,请等待。
service.ts
public NotifGetAllActedNoActive(): Observable<Notifications[]> {
let headers = new Headers();
headers.append('x-access-token', this.auth.getCurrentUser().token);
return this.http.get(Api.getUrl(Api.URLS.NotifGetAllActedNoActive), {
headers: headers
})
.map((response: Response) => {
let res = response.json();
if (res.StatusCode === 1) {
this.auth.logout();
} else {
return res.StatusDescription.map(notiff => {
return new Notifications(notiff);
});
}
});
}
component.ts
ngOnInit() {
this.subscription = Observable.interval(10000).subscribe(x => {
this.getAllNotificationsActed0();
});
}
getAllNotificationsActed0() {
this.notif.NotifGetAllActedNoActive().subscribe(notification0 => {
this.notification0 = notification0;
if (this.isSortedByDate) {
this.sortbydate();
}
});
}
有什么想法吗?
答案 0 :(得分:2)
在您的组件中尝试一下:
import { takeUntil } from 'rxjs/operators';
import { Subject, timer } from 'rxjs';
private _destroy$ = new Subject();
ngOnInit() {
this.getAllNotificationsActed0();
}
ngOnDestroy() {
this._destroy$.next();
}
getAllNotificationsActed0() {
this.notif.NotifGetAllActedNoActive()
.pipe(takeUntil(this._destroy$))
.subscribe(notification0 => {
this.notification0 = notification0;
if (this.isSortedByDate) {
this.sortbydate();
}
timer(10000).pipe(takeUntil(this._destroy$))
.subscribe(t => this.getAllNotificationsActed0() );
});
}
这是在破坏组件时停止管道的好方法。您可以使用Subject对象达到此目的。您也可以停止必须停止销毁组件的所有管道。
答案 1 :(得分:0)
尝试一下
您可以保留标记以查找等待的请求
//New Flag
requestWaiting : boolean = false;
public NotifGetAllActedNoActive(): Observable<Notifications[]> {
let headers = new Headers();
headers.append('x-access-token', this.auth.getCurrentUser().token);
return this.http.get(Api.getUrl(Api.URLS.NotifGetAllActedNoActive), {
headers: headers
})
.map((response: Response) => {
this.requestWaiting = false;
let res = response.json();
if (res.StatusCode === 1) {
this.auth.logout();
} else {
return res.StatusDescription.map(notiff => {
return new Notifications(notiff);
});
}
});
}
在间隔内调用方法的地方使用标记
ngOnInit() {
this.subscription = Observable.interval(10000).subscribe(x => {
if(!this.requestWaiting){
this.requestWaiting = true;
this.getAllNotificationsActed0();
}
});
}
getAllNotificationsActed0() {
this.notif.NotifGetAllActedNoActive().subscribe(notification0 => {
this.notification0 = notification0;
if (!this.isSortedByDate) {
this.sortbydate();
}
});
}
已触发的可观察对象将等待,直到收到响应为止。 希望对您有帮助