比如页面上要对返回的时间,电话,身份证做处理
html页面
<script type="text/html" id="itemtpl">
<span id="<%=item.id%>" class="margins mobile"><%=substrID(item.mobile,"mobile")%></span>
<span id="<%=item.id%>" class='idcard'><%=substrID(item.idcard,"idcard")%></span>
//时间
<p>时间:<%=Moment(item.delivery_times*1000).format("YYYY-MM-DD HH:mm:ss")%></p>
</script>
js
//对时间进行处理,框架自带moment插件,调用即可
Template.helper("Moment", Moment);
Template.helper("substrID", substrID);
// 截取字符串
function substrID(value,name) {
if(name=="mobile"){
return value.substr(0,3)+"****"+value.substr(7,11)
}else if(name=="idcard"){
return value.substr(0,4)+"**********"+value.substr(14,18);
}
}