1
我想從使用Angular2的Ionic2項目中的Firebase中獲取數據。以下是代碼。如何識別訂閱在Ionic 2中使用Angularfire2執行的方法
getNextItem(): string[] {
this.af.database.object(`/user/${uid}/data`)
.subscribe(value =>{
this.item = value;
});
return this.item;
}
在這種情況下,我的item
總是空如subscribe
方法執行後,我的方法是完整的。我也不能從subscribe
方法中返回item
。 那麼我將如何獲取數據以及如何識別何時執行了subscribe
方法?