0
在Meteor中,目前有一種Template.registerHelper
方法。是否可以設置類似於Template.registeronCreated
的內容,以便在每個頁面上設置某個Session變量?創建時可以在所有模板上設置會話嗎?
在Meteor中,目前有一種Template.registerHelper
方法。是否可以設置類似於Template.registeronCreated
的內容,以便在每個頁面上設置某個Session變量?創建時可以在所有模板上設置會話嗎?
我認爲你正在尋找
Session.setDefault("globalSession",value)
所以,本次會議將適用於所有應用
是的,你可以添加一個創建函數模板實例的創建模板時將調用:
Template.myTemplate.created = function() {
Session.set('foo', 'bar);
};