我在我的应用程序和用户页面中运行了Facebook登录,以显示最重要的用户详细信息。当我使用密码登录时,请使用以下代码:
user: function(){
return Meteor.user().username
},
使用:
<h1>Welcome {{user}}</h1>
返回用户名。当我使用Facebook登录登录时,用户名为空。
如何通过Facebook登录时访问当前用户的用户名?
由于
答案 0 :(得分:7)
感谢@ user3374348的评论设法找到它
Facebook用户名在profile.name中找到。所以
return Meteor.user().username || Meteor.user().profile.name
返回用户名(如果可用)或Facebook名称。
感谢您的帮助
答案 1 :(得分:1)
return Meteor.user().username || Meteor.user().profile.name
它对我有用。