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>
上一篇:JDBC调用存储过程的例子


下一篇:Sqlmap全参数详解