web-dev-qa-db-ja.com

終了後n秒後にリクエストを繰り返します(Angular2-http.get)

私はangular2で遊んで、しばらくして行き詰まりました。

http.getを使用すると、1回のリクエストで問題なく動作しますが、かなり長い間いじって、多くのreactivexを読んだ後、4秒ごとにライブデータをポーリングしたいと思います。

Observable.timer(0,4000)
  .flatMap(
    () => this._http.get(this._url)
       .share()
       .map(this.extractData)
       .catch(this.handleError)
  )
  .share(); 

http.get-observableがリクエストの結果を発行した後に(4秒)間隔を開始するsimple方法はありますか? (または、最終的にobservable-hell?)

私が欲しいタイムライン:

Time(s): 0 - - - - - 1 - - - - - 2 - - - - - 3 - - - - - 4 - - - - - 5 - - - - - 6
Action:  Request - - Response - - - - - - - - - - - - - - - - - - - -Request-... 
Wait:                | wait for 4 seconds -------------------------> |
12
SpazzMarticus

RxJS 6に更新

import { timer } from 'rxjs';
import { concatMap, map, expand, catchError } from 'rxjs/operators';

pollData$ = this._http.get(this._url)
  .pipe(
    map(this.extractData),
    catchError(this.handleError)
  );

pollData$.pipe(
  expand(_ => timer(4000).pipe(concatMap(_ => pollData$)))
).subscribe();

RxJS 5を使用していますが、RxJS4の同等の演算子が何であるかわかりません。とにかくここに私のRxJS5ソリューションがあります、それが役立つことを願っています:

var pollData = this._http.get(this._url)
            .map(this.extractData)
            .catch(this.handleError);
pollData.expand(
  () => Observable.timer(4000).concatMap(() => pollData)
).subscribe();

展開演算子はデータを出力し、出力ごとに新しいObservableを再帰的に開始します

10
Can Nguyen

私はなんとか自分でそれを行うことができましたが、唯一の欠点はhttp.getこれ以上簡単に繰り返すことはできません。

pollData(): Observable<any> {

  //Creating a subject
  var pollSubject = new Subject<any>();

  //Define the Function which subscribes our pollSubject to a new http.get observable (see _pollLiveData() below)
  var subscribeToNewRequestObservable = () => {
    this._pollLiveData()
      .subscribe(
      (res) => { pollSubject.next(res) }
      );
  };

  //Subscribe our "subscription-function" to custom subject (observable) with 4000ms of delay added
  pollSubject.delay(4000).subscribe(subscribeToNewRequestObservable);

  //Call the "subscription-function" to execute the first request
  subscribeToNewRequestObservable();

  //Return observable of our subject
  return pollSubject.asObservable();

}

private _pollLiveData() {

  var url = 'http://localhost:4711/poll/';

  return this._http.get(url)
    .map(
    (res) => { return res.json(); }
    );
};

より単純なサブスクリプションを使用できない理由は次のとおりです。

var subscribeToNewRequestObservable = () => {
    this._pollLiveData()
      .subscribe(pollSubject);
  };

完了http.get-observableはまた、あなたの主題を完成させ、それがそれ以上のアイテムを放出するのを防ぎます。


これはまだコールドオブザーバブルであるため、サブスクライブしない限り、リクエストは行われません。

this._pollService.pollData().subscribe(
  (res) => { this.count = res.count; }
);
2
SpazzMarticus

ポーリングの遅延を以前のリクエストの完了ステータスに依存させたい場合に備えて、Can Nguyenからの answer のマイナーな手直し。

var pollData = () => request()   // make request
    .do(handler, errorHandler)   // handle response data or error
    .ignoreElements()            // ignore request progress notifications
    .materialize();              // wrap error/complete notif-ns into Notification

pollData()                            // get our Observable<Notification>...
  .expand(                            // ...and recursively map...
    (n) => Rx.Observable              // ...each Notification object...
      .timer(n.error ? 1000 : 5000)   // ...(with delay depending on previous completion status)...
      .concatMap(() => pollData()))   // ...to new Observable<Notification>
  .subscribe();

プランク

または代わりに:

var pollData = () => request()             // make request
    .last()                                // take last progress value
    .catch(() => Rx.Observable.of(null));  // replace error with null-value

pollData()
  .expand(
    (data) => Rx.Observable
      .timer(data ? 5000 : 1000)           // delay depends on a value
      .concatMap(() => pollData()))
  .subscribe((d) => {console.log(d);});    // can subscribe to the value stream at the end

プランク

1
Alex Che