web-dev-qa-db-ja.com

interval、switchMap、mapでangular 6を使用してrxjs 6を取得できません

Rxjsコードを6に更新したいのですが、わかりません。

以下に、5秒ごとに新しいデータのポーリングを行う前に:

import { Observable, interval } from 'rxjs';
import { switchMap, map } from 'rxjs/operators';

var result = interval(5000).switchMap(() => this._authHttp.get(url)).map(res => res.json().results);

今...もちろん、それは壊れており、ドキュメンテーションは私に行く場所を残していません。

上記をrxjs 6に準拠させるにはどうすればいいですか?

ありがとう

19
Tampa

コードは次のようになります。 pipe演算子を使用する必要があります。

import { interval } from 'rxjs';
import { switchMap, map } from 'rxjs/operators';

const result = interval(5000).pipe(
switchMap(() => this._authHttp.get(url)),    
map(res => res.results)
)
34
siva636

多くの調査の後、RxJs '6からAngular 6を使用して以下の更新されたアプローチを思いつくことができました

検索APIは、5秒ごとに呼び出され、カウントが5を超えると登録解除されます。

let inter=interval(5000)

let model : ModelComponent;
model=new ModelComponent();
model.emailAddress="[email protected]";


let count=1;
this.subscriber=inter.pipe(
          startWith(0),
          switchMap(()=>this.asyncService.makeRequest('search',model))
        ).subscribe(response => {
          console.log("polling")
          console.log(response.list)
          count+=1;
          if(count > 5){
            this.subscriber.unsubscribe();
          }
        });

APIリクエスト:

   makeRequest(method, body) : Observable<any> {
    const url = this.baseurl + "/" + method;

    const headers = new Headers();
    this.token="Bearer"+" "+localStorage.getItem('token'); 
    headers.append('Authorization', this.token);
    headers.append('Content-Type','application/json');

    const options = new RequestOptions({headers: headers});
    return this.http.post(url, body, options).pipe(
        map((response : Response) => {
            var json = response.json();                

           return json; 
        })
    );
}

メモリリークを避けるために、登録を解除することを忘れないでください。

ngOnDestroy(): void {
if(this.subscriber){
  this.subscriber.unsubscribe();
}

}

4
Shahbaaz Khan