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()はどこでも使えるオブジェクトなので気になります
すべてのtempaltesで利用できるようにするための最良かつ安全な方法は何でしょうか?
{{app.user}}が機能していないようです
または私はセッションに入れるべきですか?ありがとう
次のようなクライアントJavaScriptでユニバーサルハンドルバーヘルパーを作成できます。
Handlebars.registerHelper('user',function(){ return Meteor.user(); });
また、たとえば、ユーザーがログインしている限り、テンプレートのどこでもそれを使用します(プロファイル名を設定している場合)。
{{user.profile.name}}