是否可以在创建时在所有模板上设置会话?
Is it possible to set Sessions on all templates when created?
在 Meteor 中,目前有一个 Template.registerHelper
方法。是否可以设置类似 Template.registeronCreated
的内容,以便在每个页面上设置某个 Session 变量?
是的,您可以将创建的函数添加到您的模板实例中,该函数将在创建模板时调用:
Template.myTemplate.created = function() {
Session.set('foo', 'bar);
};
我想你正在寻找
Session.setDefault("globalSession",value)
所以这个会话将在所有应用程序上可用
在 Meteor 中,目前有一个 Template.registerHelper
方法。是否可以设置类似 Template.registeronCreated
的内容,以便在每个页面上设置某个 Session 变量?
是的,您可以将创建的函数添加到您的模板实例中,该函数将在创建模板时调用:
Template.myTemplate.created = function() {
Session.set('foo', 'bar);
};
我想你正在寻找
Session.setDefault("globalSession",value)
所以这个会话将在所有应用程序上可用