我正在使用 ember,主要是为了方便客户端模板。
当我在一个页面中有多个标签时,我遇到了麻烦。它最终只显示最后一个模板。所以如果我从
<script type="text/x-handlebars"
>
<script type="text/x-handlebars">
<h1> My name is {{name}} </h1>
<h2> My favorite color is {{color}} </h2>
</script>
它显示完整的消息。但是如果我把它变成
<script type="text/x-handlebars">
<h1> My name is {{name}} </h1>
</script>
<p> This is some static content </p>
<script type="text/x-handlebars">
<h2> My favorite color is {{color}} </h2>
</script>
它只显示最喜欢的颜色线。
我试图在示例http://emberjs.com/examples/contacts/中复制类似的行为,但它们似乎没有执行多个未命名脚本的问题。
有人知道我需要做什么才能完成这项工作吗?