我想从指定用户的 firebase 获取用户配置文件数据。例如,我想返回 UID HBJKD12345 的用户的 displayName 和电子邮件地址
我使用这个功能:
this.userProfile = this.af.database.object('/users/'+this.authInfo.uid)
但是console.log(this.userProfile.email)
我得到一个“未定义”
在我看来,我必须使用:{{(userProfile | async )?.email}}
通过这一行,我可以显示用户的电子邮件地址,但为什么我在尝试使用 console.log 时得到“未定义”?