如何爲流星中的所有模板創建一個函數?如何在流星模板中創建全局函數
index.js
// Some function
function somefunction(){
return true;
}
Test1.js
Template.Test1.events({
'click button' : function (event, template){
//call somefunction
}
});
Test2.js
Template.Test2.events({
'click button' : function (event, template){
//call some function
}
});
可能的[流星模板助手的全局函數]的副本(http://stackoverflow.com/questions/20681761/global-function-for-meteor-template-helper) – 2016-01-11 13:02:53