最佳答案
我曾经开发了很多有前途的东西,现在我要转移到 RxJS。RxJS 的文档没有提供关于如何从承诺链转移到观察者序列的非常清晰的示例。
例如,我通常写承诺链有多个步骤,如
// a function that returns a promise
getPromise()
.then(function(result) {
// do something
})
.then(function(result) {
// do something
})
.then(function(result) {
// do something
})
.catch(function(err) {
// handle error
});
我应该如何用 RxJS 风格重写这个承诺链?