如何在流星模板中为模板定义帮助器?

时间:2017-07-18 07:50:52

标签: javascript templates handlebars.js meteor-blaze

我按照this site中的 todo app 教程进行操作,我有以下问题,

如何为 imports / ui / body.html

中的任务模板编写函数

例如,如果这是我的body.html

<body>
  <div class="container">
    <header>
      <h1>Todo List</h1>
    </header>

    <ul>
      {{#each tasks}}
        {{> task}}
      {{/each}}
    </ul>
  </div>
</body>

<template name="task">
  <li>{{text}} 
     <button onclick="{{buyItem this._id}}" >Buy</button>
  </li>
</template>

看起来它没有从父模板继承辅助函数,即如果我在

中定义
  

Template.body.helpers()

body.js

中的

0 个答案:

没有答案