我试图通过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
答案 0 :(得分:8)
未定义,因为this.af.database.list
它是异步的,因此subscribe
中的代码将在this.af.database.list
检索数据时执行。所以当代码到达行if(this.bo==true){console.log("happy"); };
时它没有任何东西,因为订阅根本没有完成。
订阅它就像旧的承诺,但现在它正在使用rxjs我建议你学习它,因为有角度和离子有很多关注。