我正在为我的示例应用程序实现handlebar.js。根据handlebar.js 文档,它尝试了上述示例。但是这些值是在脚本内的 dom 上加载的,但在浏览器上不可见。
HTML
<body>
<h1>Handlebar</h1>
<script id="entry-template" type="text/x-handlebars-template">
<div class="entry">
<h1>{{title}}</h1>
<div class="body">
{{body}}
</div>
</div>
</script>
<script src="js/jquery-1.8.3.min.js"></script>
<script src="js/handlebars.js"></script>
<script src="js/app.js"></script>
</body>
应用程序.js
var source = $("#entry-template").html();
var template = Handlebars.compile(source);
var context = {title: "My New Post", body: "This is my first post!"}
var html = template(context);
$("#entry-template").html(template(context));
当浏览器被加载时,我得到一个空白屏幕,但是在通过 firebug 调试时能够找到值 title 和 body