我想合并来自多个observable的最新发射值,所以现在我正在使用.withLatestFrom.除此之外,它将数据嵌套在嵌套数组中,而不是将数据推送到新的数组值.示例代码如下.
任何想法如何使用.withLatestFrom检索多个可观察的发射?
.withLatestFrom(source1) .withLatestFrom(source2) .withLatestFrom(source3) .map((data) => { console.log(data) });