加班到现在,处于无意识阶段,整理一下jstemplate简单用法:
1.标识符。jstemplate 使用{}作为开始和结束标记。
2.变量定义。 例如:{temp=0}
3.函数,js中函数大部分函数可以在jstemplate使用。
例如:{$T.user.name.substring(0,4)}
4.条件判断
(1). #if
例, {#if $T.response.code == null || $T.response.code == ""}
查询无数据!
{#/if}
(2).#if-else
{#if $T.user.name == "John"}
<p>3000</p>
{#else}
<p>8000</p>
{#/if}
5.循环语句 foreach
<table>
<tr>
<th>序号</th>
<th>用户名称</th>
<th>用户号码</th>
</tr>
{#foreach $T.user as row}
<tr>
<td>{$T.row$index+1}</td>
<td class="">{$T.row.name}</td>
<td>{$T.row.number}</td>
</tr>
{#/for}
</table>
好了,以后有更新再补吧。