gpt4 book ai didi

meteor - 在 meteor 模板中显示用户参数

转载 作者:行者123 更新时间:2023-12-04 05:18:15 28 4
gpt4 key购买 nike

我正在尝试找出如何做一些非常简单的事情,但这让我感到困惑。

我试图简单地显示用户名和当前登录用户的一些配置文件参数,但我走的并不远。

到目前为止,我所做的搜索似乎表明我需要使用一个辅助函数来访问诸如

Meteor.user().profile.name

将其设置为一个变量,然后可以在 Handlebars 中使用。这样对吗?

不可能简单地

模板中的 {{Meteor.user().profile.name}}并显示吗?

这肯定对我不起作用。

编辑以显示代码...。
抱歉,应该早点输入。

我正在使用的代码如下。 currentUser(由于我现在正在使用,感谢下面的回答)显然是在显示loggingInPageLayout时定义的,但无论是在此页面还是在loggingInPageLayout页面上,我都无法从currentUser中获取任何信息。
template name="loginPage">
<div>
{{#if currentUser}}
<div>
You are logged in {{currentUser.username}}
{{> loggedInPageLayout}}
</div>
{{else}}
{{> loginPageLayout}}
{{/if}}
</div>
</template>

彼得

最佳答案

您可以使用currentUser帮助程序,该帮助程序返回Meteor.user():
{{currentUser.profile.name}}

关于meteor - 在 meteor 模板中显示用户参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20311646/

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