gpt4 book ai didi

javascript - Meteor react js登录用户邮箱

转载 作者:行者123 更新时间:2023-11-30 16:02:02 31 4
gpt4 key购买 nike

我正在使用 meteor 和 React,我正在尝试显示已登录用户的电子邮件地址

这就是我正在使用的
currentUserEmail() {
return Meteor.user().emails[0].address;
},
render() {
作为返回,这就是我所拥有的


<FlatButton label={this.currentUserEmail()} primary={true} />

但我得到 emails is not defined

我试过用
<FlatButton label={Meteor.user().emails[0].address} primary={true} />
直接但我仍然收到电子邮件是未定义的帮帮忙

最佳答案

我找到了解决方案


currentUserEmail() {
var userId = Meteor.userId();
var user = Meteor.users.findOne({_id: userId});
return user.emails[0].address;
}
和平面按钮标签

<FlatButton label={this.currentUserEmail()} primary={true} />

关于javascript - Meteor react js登录用户邮箱,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37583649/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com