2017-04-11 41 views

回答

1

你可以試試這個:

this.af.database.object('/profile/' + this.uid).subscribe(profile => { 
var obj = {}; 
profile.forEach(item => { 
obj[item["$key"]] = item["$value"]; 
}); 
console.log(obj); 
}); 
相關問題