我正在尝试使用 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 文件中包含这个?我将如何使用模板,但在我假设我不能使用<script>
标签的 JS 文件中?
目前,我做类似的事情:
myFunction(id) {
return "<div>" + id + "</div>";
}
我想将其转换为模板?