简单的模板引擎function formatTemplate(dta, tmpl) { var b; var format = { price: function(x) { //console.log(typeof x,this.discount); return (x*b).toFixed(2); }, discount:function(a){ b=a==0?1:a*0.1; return b; } }; return tmpl.replace(/{(\w+)}/g, function(m1, m2) { if (!m2) return ""; return (format && format[m2]) ? format[m2](dta[m2]) : dta[m2]; }); }
时间: 2024-10-15 12:24:11