如何在Angular2中进行嵌套的Observable调用

时间:2016-11-24 13:51:34

标签: angular rxjs angular2-observables

我在制作嵌套的Observable调用时遇到了麻烦。我的意思是调用一个http服务来检索用户,然后从用户那里获取id以进行另一个http调用,最后在屏幕上呈现结果。

1)HTTP GET 1:获取用户

2)HTTP GET 2:获取用户的首选项,将唯一标识符作为参数传递

这转换为组件Blah.ts中的以下代码:

版本1 - 此代码不显示任何内容

 ngOnInit() {
        this.userService.getUser()
            .flatMap(u => {
                this.user = u; // save the user
                return Observable.of(u); // pass on the Observable
            })
            .flatMap(u => this.userService.getPreferences(this.user.username)) // get the preferences for this user
            .map(p => {
                this.preferences = p; // save the preferences
            });
    }

版本2 - 此代码有效,但对我来说似乎是错误的方法:

 this.userService.getUser().subscribe(u => {
            this.user = u;
            this.userService.getPreferences(this.user.username).subscribe(prefs => {
                this.preferences = prefs;
            });
        });

这是模板:

<h3>User</h3>

<div class="row col-md-12">
    <div class="col-md-6">
        <div class="panel panel-default">
            <div class="panel-heading">
                <h3 class="panel-title">User details</h3>
            </div>
            <div class="panel-body">
                <table class="table table-condensed">
                    <thead>
                        <tr>
                            <th>Username</th>
                            <th>Full Name</th>
                            <th>Enabled</th>                                
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td>{{user?.username}}</td>
                            <td>{{user?.fullName}}</td>
                            <td>{{user?.enabled}}</td>                          
                        </tr>
                    </tbody>
                </table>
            </div>
        </div>
    </div>
    <!-- end of col 1-->

    <div class="col-md-6">
        <div class="panel panel-default">
            <div class="panel-heading">
                <h3 class="panel-title">User preferences</h3>
            </div>
            <div class="panel-body">
                <table class="table table-condensed">
                    <thead>
                        <tr>
                            <th>Language</th>
                            <th>Locale</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td>{{preferences?.preferences?.get('language')}}</td>
                            <td>{{preferences?.preferences?.get('locale')}}</td>
                        </tr>
                    </tbody>
                </table>
            </div>
        </div>
    </div>
    <!-- end of col 2-->

</div>
<!-- end of row 1-->

我认为显示该服务没有任何意义,只需拨打http get()电话:

  http.get('http://blablah/users/')
        .map((response) => response.json())

请建议哪种方法是定义一系列Observables的最佳工作方法。

4 个答案:

答案 0 :(得分:31)

你应该稍微阅读rxjs的运营商。您的示例非常详细,并且以他们不应该使用的方式使用flatMapmap。你的第一个例子也无法工作,因为你没有订阅Observable。

这将满足您的需求:

ngOnInit() {
    this.userService.getUser()
        .do(u => this.user = u) //.do just invokes the function. does not manipulate the stream, return value is ignored.
        .flatMap(u => this.userService.getPreferences(u.username))
        .subscribe(p => this.preferences = p);
}

从rxjs 5.5开始,你应该使用pipeable operators

ngOnInit() {
    this.userService.getUser().pipe(
        tap(u => this.user = u),
        flatMap(u => this.userService.getPreferences(u.username))
      ).subscribe(p => this.preferences = p);
}

答案 1 :(得分:6)

好吧,所以经过一天的互联网挣扎和编译信息后,我学到了关于链接Observables(按序列调用Observables - 一个接一个)的知识:

我正在开发一个Angular2(4)网站,该网站使用java后端API来获取/设置/修改数据库中的信息。

我的问题是我必须在返回Observables(RxJS)的序列中进行两次API(HTTP POST)调用。

我有Operation1和Operation2。操作2应在操作1完成后执行。 enter image description here

Variant1 - &gt;起初我在其他内部做了一个(比如javascript中的嵌套函数):

     this.someService.operation1(someParameters).subscribe(
        resFromOp1 => {
          this.someService.operation2(otherParameters).subscribe(
            resFromOp2 => {
              // After the two operations are done with success
              this.refreshPageMyFunction() 
            },
            errFromOp2 => {
              console.log(errFromOp2);
            }
          );
        },
        errFromOp1 => {
          console.log(errFromOp1);
        }
      );

尽管这些代码是合法且有效的,但我还是要求一个接一个地链接这些Observable,就像使用Promise的异步函数一样。一种方法是将Observables转换为Promises。

另一种方法是使用RxJS flatMap:

Variant2 - &gt;另一种方法是使用flatMap执行此操作,据我所知,它类似于Promises:

   this.someService.operation1(someParameters)
    .flatMap(u => this.someService.operation2(otherParameters))
    .subscribe(function(){
        return this.refreshPageMyFunction()
      },
      function (error) {
        console.log(error);
      }
    );

Variant3 - &gt;与箭头功能相同:

   this.someService.operation1(someParameters)
    .flatMap(() => this.someService.operation2(otherParameters))
    .subscribe(() => this.refreshPageMyFunction(),
      error => console.log(error)
    );

返回Observables的方法基本上就是:

  operation1(someParameters): Observable<any> {
    return this.http.post('api/foo/bar', someParameters);
  }

  operation2(otherParameters): Observable<any> {
    return this.http.post('api/some/thing', otherParameters);
  }

其他资源和有用的评论:

This post approved answer by @j2L4e: https://stackoverflow.com/a/40803745/2979938

https://stackoverflow.com/a/34523396/2979938

https://stackoverflow.com/a/37777382/2979938

答案 2 :(得分:2)

你是对的,嵌套订阅是错误的......

flatmap是正确的

这应该有帮助

https://embed.plnkr.co/mqR9jE/preview

或阅读本教程

https://gist.github.com/staltz/868e7e9bc2a7b8c1f754

一些代码......

// responseStream: stream of JSON responses
var responseStream = requestStream
  // We use flatMap instead of map to prevent this stream being a metastream - i.e. stream of streams
  .flatMap(requestUrl => {
    // Convert promise to stream
    return Rx.Observable.fromPromise($.getJSON(requestUrl));
  }).publish().refCount(); // Make responseStream a hot observable, prevents multiple API requests
// see https://gist.github.com/staltz/868e7e9bc2a7b8c1f754#gistcomment-1255116

此处请求URL是从不同的流/ Observable发出的输入。

现在订阅responseStream

答案 3 :(得分:2)

版本1 是最好的,应该可以使用,您只是忘了订阅:

 ngOnInit() {
    this.userService.getUser()
        .flatMap(u => {
            this.user = u; // save the user
            return Observable.of(u); // pass on the Observable
        })
        .flatMap(u => this.userService.getPreferences(this.user.username)) // get the preferences for this user
        .map(p => {
            this.preferences = p; // save the preferences
        })
        .subscribe();
}