在Meteor中如何判断我的模板是否被用作块助手?

时间:2014-07-31 04:44:39

标签: meteor meteor-blaze

我试图编写一个有时会用作块助手的模板,如下所示:

<template name="helpText">
  {{#if isBlockHelper}}
    {{> UI.contentBlock}} 
  {{else}}
    Looks like there's nothing to display!
  {{/if}}
</template>

有没有办法在流星中做到这一点?

1 个答案:

答案 0 :(得分:0)

原来这很简单:

<template name="helpText">
  {{#if UI.contentBlock}}
    {{> UI.contentBlock}} 
  {{else}}
    Looks like there's nothing to display!
  {{/if}}
</template>