gpt4 book ai didi

javascript - 如何使用 Meteor 获取当前用户的用户名

转载 作者:可可西里 更新时间:2023-11-01 02:52:15 24 4
gpt4 key购买 nike

到目前为止,我一直在浏览整个互联网和 Meteor 文档,但没有任何效果。

我正在创建一个帐户

Accounts.createUser({
username: username,
email: email,
password: password
});

而且我知道这是有效的,因为 {{#if currentUser}} 正在工作。

但是,我正在尝试获取当前登录用户的用户名,例如

var username = Meteor.userId();
console.log(username);

var username = Meteor.userId().username;
console.log(username);

但两者都不起作用,当我使用 Meteor.userId() 时,我只是得到一个随机的(我猜是加密的)数字和字母字符串,当我使用 Meteor 时。 userId().username 它表示未定义。

欢迎所有帮助,对于我可能糟糕的语法感到抱歉,这里非常晚了!

最佳答案

Meteor.userId()Mongo.users 返回用户的 _id收藏。这就是为什么它看起来像一个无意义的字符串。

你想要Meteor.user() . docs是你最好的 friend :)

关于javascript - 如何使用 Meteor 获取当前用户的用户名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26728155/

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