实现RxJs运算符,而不是嵌套的订阅块

时间:2018-11-25 09:42:13

标签: angular rxjs graphql angular-router rxjs-pipeable-operators

我从 route参数中获得了id,并且正在传递给我的API调用。为此,我目前正在使用嵌套订阅。但是我想使用concat() RxJs 的其他一些运算符(我不知道哪个),以便避免嵌套。由于文档here没有给出示例,这让我感到困惑,我该如何在代码中使用它。

下面是实现嵌套的代码,我想使用concat()或其他RxJ运算符来实现相同的逻辑。

this.route.params.subscribe((params: Params) => {
  this.selectedPostId = +params['id'];
  if (this.selectedPostId) {
    // Simple GraphQL API call below
    this.apollo.watchQuery(GetPost, {id: this.selectedPostId})
      .subscribe((post: PostType) => {
        if (post) {
          console.log(post);
        }
      });
  }
});

1 个答案:

答案 0 :(得分:2)

您真正想要的运算符是flatMap

import { map, flatMap, filter } from 'rxjs/operators';

// ...


this.route.params.pipe(
        map((params: Params) => +params['id']), // Get the ID param
        filter((selectedPostId: any) => selectedPostId), // Remove any events without an ID
        flatMap(id => this.apollo.watchQuery(GetPost, {id: selectedPostId})) // Call the watchQuery function
    ).subscribe((post: PostType) => {
        if (post) {
          console.log(post);
        }
    });