我在angular2应用程序中遇到了性能问题,因为我有一个很大的Observable.combineLatest(),其中有许多输入快速变化,我想要去掉回调调用:
原文链接:https://www.f2er.com/angularjs/240368.htmlmyData$= 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,但我不知道该怎么做,有什么想法吗?