【发布时间】:2018-04-27 05:08:18
【问题描述】:
我正在学习流星框架。我正在尝试渲染模板,但它会引发此错误:
Errors prevented startup:
While processing files with static-html (for target web.browser):
client/html/sidebar.html:1: Expected <head> or <body> tag
我的 layout.html 文件是这样的:
<body>
{{> sidebar}}
</body>
sidebar.html 文件是这样的:
<template name="sidebar">
<h1>Hello</h1>
</template>
为什么它不在 layout.html 上呈现??
【问题讨论】:
标签: meteor meteor-blaze