我很难理解这一点。当我将 switchMap 运算符与 Observable 一起使用时,它会按预期发出所有值:
Observable.from([1, 2, 3, 4, 5])
.do(console.log)
.switchMap(i => Observable.of('*' + i))
.do(console.log)
.subscribe();
结果:
1
*1
2
*2
3
*3
4
*4
5
*5
但是当我用 Promise 替换 Observable 时,我得到了不同的行为:
Observable.from([1, 2, 3, 4, 5])
.do(console.log)
.switchMap(i => new Promise((resolve) => resolve('*' + i)))
.do(console.log)
.subscribe();
结果:
1
2
3
4
5
*5