BehaviorSubject
当我从实例 ( )订阅共享映射时t
,只执行第一个订阅。
当原始BehaviorSubject
( obj
) 发出第二个值时,仅打印最新值,并且两个订阅都已执行。
让检查我的代码
const obj = new Rx.BehaviorSubject(1)
obj.subscribe(console.log)
const t = obj.map(u => {
console.log("mapped")
return u * 10
}).share()
t.subscribe(x => console.log("subscribe 1 " + x))
t.subscribe(x => console.log("subscribe 2 " + x))
//with the following line un-commented, both subscriptions print out new value
//obj.next(2)
我的预期结果是
1
mapped
subscribe 1 10
subscribe 2 10
但实际结果是
1
mapped
subscribe 1 10
抱歉这个天真的问题。有没有人可以向我解释这个?
太感谢了