我实现了一个简单的BehaviorSubject,
import {BehaviorSubject} from "rxjs";
class MyWeirdoClass {
constructor() {}
private st: Subject<boolean> = new BehaviorSubject<boolean>(null);
changeSt(val:boolean){
this.st.next(val);
}
val(){
this.st.subscribe(res=>{
if (res){
console.log(res);
}
})
}
stStatus() {
this.val();
this.changeSt(true);
this.val();
this.changeSt(false);
this.val();
}
}
现在运行stStatus()时会在控制台上显示以下输出.
true
true
虽然我期待价值
false
true
false
我的实施有什么问题?
解决方法:
你得到的输出是正确的:
this.val();
由于if(res){…},这只会使第一个订阅无法打印任何内容.
this.changeSt(true);
将值设置为true,由第一个订阅打印.
this.val();
使第二个订阅打印第二个true.
this.changeSt(false);
您将其设置为false,由于if(res){…}而被所有订阅者忽略.
this.val();
与上述相同.