我按照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
中的