0
我正在嘗試流星。我只想從一個函數調用另一個函數,它給了我參考錯誤,說xxx未定義。流星 - 在同一個模板助手中如何調用另一個函數
在我的html文件:
<template name="hello">
{{getDaysInMonth}}
</template>
在js文件:
Template.hello.helpers({
getDaysInMonth: function(){
var now = new Date();
return getDaysInParticularMonth(now.getMonth(), now.getFullYear()); // Meteor does not find this function
},
getDaysInParticularMonth: function(month, year) {
console.log("hey");
return 0; //just for test
},
});
輸出
ReferenceError: getDaysInParticularMonth is not defined
plz幫助。謝謝,
有什麼理由原代碼失敗了?任何爲什麼Template.instance()。methodname()都不起作用? – droidbee