答案 0 :(得分:3)
是。这是script
标记中的简单模板:
<script id="hogan-tpl" type="text">
hello {{planet}}
</script>
这里是从script
元素中获取模板所需的最小JavaScript,使用Hogan.js编译模板,并在将其分配给正文的innerHTML之前使用适当的数据进行渲染:
var template = $('#hogan-tpl').html(),
hello = Hogan.compile(template),
context = { planet: "world" },
tpl = hello.render(context);
document.body.innerHTML = tpl;