0
這是數據庫的結構,我要取一個value('UID')
。
this.af.database.object('/profile/' + this.uid).subscribe(profile => {
console.log(profile);
this.uid = profile.uid;
console.log(this.uid);
});
這是數據庫的結構,我要取一個value('UID')
。
this.af.database.object('/profile/' + this.uid).subscribe(profile => {
console.log(profile);
this.uid = profile.uid;
console.log(this.uid);
});
你可以試試這個:
this.af.database.object('/profile/' + this.uid).subscribe(profile => {
var obj = {};
profile.forEach(item => {
obj[item["$key"]] = item["$value"];
});
console.log(obj);
});