我想像这样从脚本标签中的HTML模板中加载字符串,但是我的变量需要反引号才能在我的js中起作用,但是有人知道如何将html中的字符串转换为我的变量在模板函数中有反引号。能做到吗?
$('#' templateId).html()
<script type="text/html" id="template-01">
<header>${data.header}</header>
</script>
template: function(obj, templateId) {
let data = {};
data = $.extend(data, obj);
let template = $(`#` + templateId).html();
console.log(template);
return this;
},