gpt4 book ai didi

Angular 2 - 当返回一个空的可观察对象时,使用平面图的同步 http 调用不执行下一个调用

转载 作者:可可西里 更新时间:2023-11-01 17:24:51 30 4
gpt4 key购买 nike

我正在以这种方式执行三个同步调用

this.deletePreallocations()
.flatMap(() => {
return this.postPreallocations();
})
.flatMap(() => {
return this.postPayment();
})
.takeWhile(() => this.isAlive)
.subscribe(
() => { },
err => {
console.log(err);
});

而且每次调用都是这样

deletePreallocations() {
if (this.preAllocationsDeleteIds.length > 0) {
let self = this;
let prealloctionsDeleteIDs = this.preAllocationsDeleteIds.filter(function (item, index) { return self.preAllocationsDeleteIds.indexOf(item) === index; });
return this.paymentsService.deletePreallocations(this.payment.ID, prealloctionsDeleteIDs);
}
return Observable.empty();
}

postPreallocations() {
if (this.preallocationupdatedValues.length > 0) {
return this.paymentsService.postPreallocationsCollection(this.payment.ID, this.preallocationupdatedValues);
}
return Observable.empty();
}

postPayment() {
return this.paymentsService.post(this.payment);
}

所以问题是当返回的 observable 为空时,它不会执行下一个调用。有人可以建议这段代码有什么问题。

谢谢

最佳答案

这是正确的,因为 flatMap 仅适用于 next 通知,而 Observable.empty() 仅发送 complete 通知,仅此而已。

所以你能做的就是不依赖于 next 通知,只是等到上一个 Observable 完成:

this.deletePreallocations()
.concat(Observable.defer(() => this.postPreallocations()))
.concat(Observable.defer(() => this.postPayment()))
.takeWhile(() => this.isAlive)
.subscribe(
() => { },
err => {
console.log(err);
}
);

我正在使用 Observable.defer 仅当您订阅它时才调用它的回调。由于在 this.postPreallocations()this.postPayment() 中,您有一些依赖于内部状态的逻辑,这应该保证这些方法仅在 concat 尝试订阅。

关于Angular 2 - 当返回一个空的可观察对象时,使用平面图的同步 http 调用不执行下一个调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48774342/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com