template-web.js 引用变量、函数

时间:2023-03-09 08:18:51
template-web.js 引用变量、函数

1.关键字   $imports.+变量/函数

{{if $imports.myParseInt(b.health_money)}}
<span class="num">+{{b.health_money}}积分</span>
{{else}}
<span class="num org">{{b.health_money}}积分</span>
{{/if}}
<img src="{{$imports.url+ data.img}}" alt="">

2.拓展方法

template.defaults.imports.+方法名 = function ( 参数 ) {

}

template.defaults.imports.myParseInt = function (str) {
if ( parseInt(str) > ) {
return 1;
} else {
return ;
}
};

使用

<span class="num org">{{b.health_money | myParseInt}}</span>