首页 > 代码库 > 模板字符串
模板字符串
var template=`<ul>
<% for(var i=0;i < data.supplies.length;i++){%>
<li><%=data.supplies[i] %></li>
<%}%>
</ul>`;
function compile(template){
var evalExpr=/<%=(.+?)%>/g;
var expr=/<%([\s\S]+?)%>/g;
template=template
.replace(evalExpr,‘`); \n echo($1) \n echo(`‘)
.replace(expr,‘`); \n $1 \n echo(`‘);
template=‘echo(`‘+template+‘`);‘;
var script=`(function parse(data){
var output="";
function echo(html){
output+=html;
}
${template}
return output;
})`;
return script;
}
模板字符串
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。