我正在使用流星& bootstrap用于非常基本的应用程序。我已经设置了一些虚拟代码,可以准确地复制我正在尝试的内容:
在HTML中:
<template name='test'>
<p> Im a test </p>
</template>
在JS中:
Template.test.helpers({
})
我得到了
ReferenceError: Template is not defined
在我称之为测试模板的行上。为什么会这样?我已经定义了模板,现在无法处理 - 好吧,什么都没有。
感谢您阅读