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

javascript - rxjs switchmap observable, save variables for final - Stack Overflow

programmeradmin1浏览0评论

I need know a good practise for this problem.

I am calling to three services concat with switchMaps, but I need a variable of first service for the last service. How was the best practice to do this?

Example:

this.session.account.get()
.switchMap(account => this.employerApi.get(account.accountId))
.switchMap(employer => this.addressApi.get(employer.addressId))
.filter(address => address.numer % 2)
.subscribe(address => console.log(¿¿¿¿¿account.name?????, address.name));

Thanks for your help

I need know a good practise for this problem.

I am calling to three services concat with switchMaps, but I need a variable of first service for the last service. How was the best practice to do this?

Example:

this.session.account.get()
.switchMap(account => this.employerApi.get(account.accountId))
.switchMap(employer => this.addressApi.get(employer.addressId))
.filter(address => address.numer % 2)
.subscribe(address => console.log(¿¿¿¿¿account.name?????, address.name));

Thanks for your help

Share Improve this question asked Jun 27, 2018 at 12:47 srhuevosrhuevo 4203 silver badges18 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 12

The simplest way would be to aggregate the values as you go:

this.session.account.get()
  .switchMap(account =>
    this.employerApi.get(account.accountId).map(employer => ({employer, account}))
  .switchMap(data => 
    this.addressApi.get(employer.addressId).map(address => ({...data, address}))
  .filter(data => data.address.number % 2)
  .subscribe(...)

Not sure this is the best way to do it, but here is a way to do it :

this.session.account.get()
.switchMap(account => zip(Observable.from(account), this.employerApi.get(account.accountId))
.switchMap((account, employer) => zip(Observable.from(account), this.addressApi.get(employer.addressId))
.filter((account,address) => address.numer % 2)
.subscribe((account,address) => console.log(¿¿¿¿¿account.name?????, address.name));

In terms of best practices however, I think what you need is a serializer in the backend that returns the results in a json format, something like : { "account": account_object, "address" : address_object}.

发布评论

评论列表(0)

  1. 暂无评论