template 渲染模板
优质
小牛编辑
128浏览
2023-12-01
说明
调用方法:
- $.f2e.util.render(temp,data,fn,helper);
函数说明:
调用template渲染模板,依赖于artTemplate库
参数说明:
参数名 | 类型 | 说明 | 备注 |
---|---|---|---|
temp | string | html字符串 | 无 |
data | object | 参数名 | 无 |
fn | function | 回调函数 | 无 |
helper | function | artTemplate自定义方法 | 无 |
脚本
<script>
$.f2e.util.render(html,{act:xxx},function(result){
$("body").html(result);
},TMHelper)
function TMHelper(){
template.helper('$timeunix', function (timenum) {
var unixTimestamp = new Date(timenum)
return unixTimestamp.getFullYear() +'-'+ (unixTimestamp.getMonth()+1) +'-'+ unixTimestamp.getDate()
});
}
</script>