gpt4 book ai didi

javascript - AngularFire2 在检索数据后访问数据

转载 作者:数据小太阳 更新时间:2023-10-29 06:00:20 26 4
gpt4 key购买 nike

我正在尝试使用 AngularFire2 从我的 Firebase 获取数据。我想查看具体的数据,从Firebase获取这些数据后,我只能在特定的范围内查看,而不是在对Firebase进行操作之后。为什么会这样?

下面是我的代码:

 this.af.database.list('/users/1qfcMAQnglX9jsW5GdLpPko1HqE2', { preserveSnapshot: true})
.subscribe(snapshots=>{
snapshots.forEach(snapshot => {
if(snapshot.key=="reg_boolean"){
console.log(snapshot.val());
this.bo=snapshot.val();
}
this.currentUser.push({key:snapshot.key,value:snapshot.val()});
console.log(this.currentUser);
//console.log(snapshot.key, snapshot.val());
if(this.bo==true){console.log("happy"); }; //i can access only in this scope
});

})
if(this.bo==true){console.log("happy"); }; //why i can access this value??it's undefined, this happen before the subscribe with angularfire2

enter image description here

最佳答案

它是未定义的,因为 this.af.database.list 它是异步的所以 subscribe 中的代码将在 this.af.database.list 时执行> 确实检索数据。所以当代码到达 if(this.bo==true){console.log("happy"); 行时}; 它什么都没有,因为订阅根本没有完成。

订阅就像旧的 promise ,但现在它与 rxjs 一起工作我建议你学习它,因为 angular 和 ionic 对此有很多关注。

尝试查看 https://www.learnrxjs.io/

关于javascript - AngularFire2 在检索数据后访问数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41659368/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com