我的原始代码很难调试和维护,所以我正在重写我的代码。
原始代码
this.userService.getLocationId(id).subscribe(
(locationId) => {
this.userService.getUserParams(locationId).subscribe(
(params) => {
// This API would store users to Akita Store
this.userService.getUsers(params).subscribe()
// Get data from Akita Store
this.users$.subscribe(
(users) => {
this.users = [...users]
this.userService.putSomeUserFirst().subscribe(
(data) => {
if (data === true) {
this.users.unshift(user)
this.users = [...new Map(this.users.map(agent => [user.id, user])).values()];
}
}
)
}
)
}
)
}
)
所以基本上,我调用了几个 API,API 的参数基于之前的 API 结果,除了最后一个 API 调用。最后一个 API 调用是关于按特定顺序组织用户。
重写代码
this.userService.getLocation(id).pipe(
// Don't know which RxJS operator I should be using
flatMap((locationId) => {
if (locationId) {
return this.userService.getUserParams(locationId)
}
}),
flatMap((params) => {
return this.userService.getUser(params)
}),
flatMap(() => {
return this.users$
})
).subscribe(
(users) => {
this.users = users
}
)
我在实现原始嵌套订阅的最后一点时遇到了麻烦。重写的代码是正确的方法吗?我应该如何编写剩余部分以及我应该使用哪个 RxJS 运算符?