如何在流星中找到当前模板?

时间:2015-10-04 08:48:55

标签: meteor

是否有找到当前模板的功能?

<template name="Login">
   <h1>{{template}}</h1> //Should display Login
</template>

<template name="Login">
   <h1>{{showtemplate}}</h1>
</template>

Helperjs:

showtemplate: function(){
   return Template;
}

1 个答案:

答案 0 :(得分:3)

如果你想要模板的名称,可以这样:

showtemplate: function(){
  return Template.instance().view.name;
}

这将返回字符串“Template.yourTemplateName”