模板定义
模板可以放在 js 文件中,如:
var htmlTemplate = '<h1>{{title}}</h1><p>{{author.name}}</p>';
也可以放在页面底部:如:
<script type="text/x-handlebars-template" id="template">
<h1>{{title}}</h1>
<p>{{author.name}}</p>
</script>
模板可以放在 js 文件中,如:
var htmlTemplate = '<h1>{{title}}</h1><p>{{author.name}}</p>';
也可以放在页面底部:如:
<script type="text/x-handlebars-template" id="template">
<h1>{{title}}</h1>
<p>{{author.name}}</p>
</script>