标签: typescript rxjs
我想采用 Observable 并将其转换为布尔
这样做有标准的操作员吗?我已经四处寻找但没找到任何东西。感谢。
答案 0 :(得分:1)
不,没有。如果您只想获得第一个值,请执行以下操作:
const myBoolean; yourObservable$.first().subscribe(myBool => myBoolean = myBool);