我尝试在我的网络应用程序上将 EmberJS 从 pre1 更新到 pre2,但我注意到它将所有车把模板作为最后一个正文元素,有时根本没有。
我已经使用 starter-kit创建了一个 repro ,只需修改在模板之前和之后放置 div 以显示模板将被添加到错误的位置。使用 pre1 运行同一页面,一切正常。
索引.html
……
<body>
<div>this is before the template</div>
<script type="text/x-handlebars" data-template-name="application">
<h1>Hello from Ember.js</h1>
</script>
<div>this is after the template</div>
……