我正在尝试使用javascript模板
<script type="text/x-tmpl" id="tmpl-demo">
<h3>{%=o.title%}</h3>
<p>Released under the
<a href="{%=o.license.url%}">{%=o.license.name%}</a>.</p>
</script>
问题是 - 我想在我的JS文件中包含这个?我将如何使用模板,但在我的JS文件中我假设我无法使用<script>
标签?
目前,我做了类似的事情:
myFunction(id) {
return "<div>" + id + "</div>";
}
我想将其转换为模板吗?
答案 0 :(得分:2)
您基本上有四种选择: