Meteor .helpers函数参数

时间:2015-04-02 11:01:17

标签: meteor meteor-blaze

是否可以将模板中的参数传递给.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

1 个答案:

答案 0 :(得分:8)

您的语法不正确,请尝试以下操作:

<input type="hidden" id="docID" name="docID" value="{{getDocID 1}}">