Meteor official tutorial不引用模板名称,而是使用“body”。如果用模板名称替换“body”它不起作用,但它应该按理论工作。
Template.body.helpers //this works, but why?
Template.task.helpers //this does not work, why?
在教程中似乎没有解释。
我错过了什么?
答案 0 :(得分:2)
您错过的是默认情况下会创建<body></body>
的模板。在body模板内部,你得到了每个循环,由Template.body.helpers管理。
Template.task.helpers只能管理<template name="task"></template>
内部直接使用的内容。