如何从rxjs 6中的subject._subscribe获得价值?

时间:2019-01-17 22:20:03

标签: rxjs6

https://rxjs-dev.firebaseapp.com/api/index/class/Subject#_subscribe

对于应该如何从中获取值感到困惑,在旧版本中,语法为

subject.subscribe((value) => {
 //do something with the value
})

但是现在,如果尝试使用相同的语法,则会出现下一个错误。

Argument of type '(xx:xx) => void' is not assignable to parameter of 
type 'Subscriber<xx>'. Property 'syncErrorValue' is missing in type '(xx:xx) => void'

我看到的所有方法,为什么不订阅?

all the methods I see

enter image description here

编辑


我无法使用subject.subscribe,因为软件包似乎坏了。删除并重新安装它们后,此问题已解决。

0 个答案:

没有答案