我试图将div的开头放在“标题”模板中,并将结尾放在“页脚”模板中。 不幸的是,流星在构建过程中显示以下内容并且无法启动:
Your app is crashing. Here's the latest log.
=> Meteor server restarted
Errors prevented startup:
While building the application:
file.html:22: Expected "div" end tag
实现从一个模板开始到另一个模板结束的div的正确方法是什么?
提前致谢。
答案 0 :(得分:1)
尽可能扩展你的模板。
如果没有您的代码示例,我只能假设您正在尝试做什么。
<body>
<div class="container">
<div id="another-div">
{{> header}}
</div>
{{> footer}}
</div>
</body>
<template name="header">
<nav id="header">
<!-- content -->
</nav>
</template>
<template name="footer">
<footer id="footer">
<!-- content -->
</footer>
</template>
话虽如此,您帖子中的代码示例将有助于指定答案。