随着流星更新到 0.8,我的旧代码停止工作。
Handlebars.registerHelper('getTemplate', function(id, context) {
return Template[id](context);
});
<template name="main">
....
{{{getTemplate templateName context}}}
....
</template>
//somewhere in other template
Template.main.context = {name:value};
通过这种方式,我能够使用自定义数据呈现自定义模板。现在我找不到传递context
给动态模板的方法。与 blazetemplateName
并context
没有定义。有什么建议吗?