Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道 user() 是一个可以在各处使用的对象
什么是让它在所有模板中可用的最好和最安全的方法?
{{app.user}} 似乎不起作用
还是我应该放入 Session ?谢谢
您可以在客户端 javascript 中制作通用车把助手,例如:
Handlebars.registerHelper('user',function(){ return Meteor.user(); });
只要用户登录,模板中的任何地方都可以使用它,例如(如果您设置了配置文件名称):
{{user.profile.name}}