首页 > 其他 > 详细

artTemplate 辅助函数

时间:2020-12-28 21:38:50      阅读:28      评论:0      收藏:0      [点我收藏+]

自定义辅助方法

使用template.helper方法添加公用的辅助方法

template.helper(test, callback);
var html = template(‘test‘, data);
document.getElementById(‘content‘).innerHTML = html;

 

举个例子
/**
* 保留小位数
* 使用方法 <%=toFixed(val, 1) || 0%>
*/
template.helper(‘toFixed‘, function (value, num) {
return value ? value.toFixed(num) : 0;
});
 
 

 

 

artTemplate 辅助函数

原文:https://www.cnblogs.com/zhilu/p/14203338.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!