如何为流星中的所有模板创建一个函数?
index.js
// Some function
function somefunction(){
return true;
}
测试1.js
Template.Test1.events({
'click button' : function (event, template){
//call somefunction
}
});
Test2.js
Template.Test2.events({
'click button' : function (event, template){
//call some function
}
});