Rxjs管道完成-使用当前上下文

时间:2019-08-15 11:53:43

标签: javascript rxjs

遵循proposed方法在RxJS 6上最终使用,

   myObservable.pipe(
     finalize(() => {
      // do some operation
     })
   )

我发现如果完成,我将无法访问回调内部的当前上下文变量 我想出的解决方案是

let that = this
myObservable = finalize(
  ()=> {
    // do thing with that
  })(myObservable) 

我做错了什么吗?有什么我可以做的更好的代码吗?

0 个答案:

没有答案