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'
我看到的所有方法,为什么不订阅?
我无法使用subject.subscribe,因为软件包似乎坏了。删除并重新安装它们后,此问题已解决。