5
是否可以將我的模板參數傳遞給.helpers函數參數?我正在嘗試下面的代碼,但我總是得到下面顯示的錯誤。由於Meteor.helpers函數參數
Template.documentUpdate.helpers({
getDocID: function(dCode){
return docsIDArray[dCode];
}
});
模板:
<input type="hidden" id="docID" name="docID" value="{{getDocID(1) }}">
錯誤:
Exception from Tracker recompute function: Error: No such function: getDocID