angular2:如何去除Observable.combine最新的电话?

前端之家收集整理的这篇文章主要介绍了angular2:如何去除Observable.combine最新的电话?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在angular2应用程序中遇到了性能问题,因为我有一个很大的Observable.combineLatest(),其中有许多输入快速变化,我想要去掉回调调用
myData$= Observable.combineLatest(
  this.store.let(fromRoot.getFoo),this.store.let(fromRoot.getBar),this.store.let(fromRoot.getFoobar),this.store.let(fromRoot.getBarfoo),(foo,bar,foobar,barfoo) => {
     ...
  });

在事后调用去抖,例如Observable.combineLatest(…).debounceTime(300)是没用的,因为cpu密集型任务发生在仍然经常被调用的combineLatest回调中.

我想我必须结合另一个Observable,但我不知道该怎么做,有什么想法吗?

combineLatest方法的项目函数本质上是一个map运算符.你可以重新安排这样的事情:
myData$= Observable.combineLatest(
  this.store.let(fromRoot.getFoo),this.store.let(fromRoot.getBarfoo)
)
.debounceTime(300)
.map(([foo,barfoo]) => {
  ...
});
原文链接:https://www.f2er.com/angularjs/240368.html

猜你在找的Angularjs相关文章