您好我试图在meteor中创建一个自定义登录表单,其功能与默认提供的相似。我想向我的用户展示'电子邮件地址,如果他们已登录并显示登录按钮,如果他们不登录。到目前为止我有
{{#if currentUser}}
{{displayName}}
{{/else}}
<button>Login</button>
{{/if}
但这不起作用。有人可以帮忙吗?谢谢。
答案 0 :(得分:1)
假设您添加了帐户包,currentUser
帮助应该有效,您应该只添加看似
displayName: function(){
return Meteor.user().emails[0].address;
}
哦,我知道你哪里弄错了,应该是{{else}}
而不是{{/else}}