1
我正在轉換this應用程序以支持RxJS版本5.但我不確定如何轉換以下代碼。如何將RxJS v4應用程序轉換爲RxJS v5版本
losslessClick.subscribe(function (checked) {
if (checked) {
mousemove.resume();
} else {
mousemove.pause();
}
})
我嘗試了here的建議,但沒有爲我工作。
var pauser = new Subject();
var pausable = pauser.switchMap(paused => paused ? Observable.never() : mousemove);
pausable.subscription(x => console.log(x));
pauser.next(true);
任何幫助,將不勝感激。提前致謝。
謝謝。它工作正常:) – stafan