最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Angular http client observable pipe map - Stack Overflow

programmeradmin5浏览0评论

I have this in my service

  doSomething(): Observable<any> {
    return this.http.get('')
      .pipe(
        map((data: Response) => {
            if (data && data['success'] && data['success'] === true) {
              return true;
            } else {
              return false;
            }
          }
        )
      );  
  }  

This works, I can subscribe to the function from my ponent, for example

    this.myService.doSomething().subscribe(
        (result) => {
            console.log(result);
        },
        (err) => {
            console.log("ERROR!!!");
        }
    );

Al this already works, but I want to refactor so that I can remove

 if (data && data['success'] && data['success'] === true)

in my map. So that the map function only will be executed when I have upfront did the check. My first thought was to add a function in the pipe stack that will take the Response from the http client, check if the the conditions are good, otherwise throw an error (with throwError function). But I'm struggling how to (well at least figure out which Rxjs function to use).

Can somebody help me out with this?

I have this in my service

  doSomething(): Observable<any> {
    return this.http.get('http://my.api./something')
      .pipe(
        map((data: Response) => {
            if (data && data['success'] && data['success'] === true) {
              return true;
            } else {
              return false;
            }
          }
        )
      );  
  }  

This works, I can subscribe to the function from my ponent, for example

    this.myService.doSomething().subscribe(
        (result) => {
            console.log(result);
        },
        (err) => {
            console.log("ERROR!!!");
        }
    );

Al this already works, but I want to refactor so that I can remove

 if (data && data['success'] && data['success'] === true)

in my map. So that the map function only will be executed when I have upfront did the check. My first thought was to add a function in the pipe stack that will take the Response from the http client, check if the the conditions are good, otherwise throw an error (with throwError function). But I'm struggling how to (well at least figure out which Rxjs function to use).

Can somebody help me out with this?

Share Improve this question edited Dec 6, 2022 at 0:15 Jason Aller 3,65228 gold badges41 silver badges39 bronze badges asked Oct 29, 2018 at 16:35 fransyozeffransyozef 5742 gold badges8 silver badges18 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 1

Try using this :

doSomething(): Observable<any> {

    return this.http.get('http://my.api./something')
      .pipe(
        mergeMap((data: Response) => {
            return of(data && data['success'] === true) 
          }
        ));  
}  

You have to perform the mergeMap first to do the check as your observable result will not be available if not...

发布评论

评论列表(0)

  1. 暂无评论