tramsy模板引擎(完善中)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tramsy模板引擎(完善中)相关的知识,希望对你有一定的参考价值。
(1)form表单
<form class="form-horizontal row" role="form" action="<{url route=‘shopadmin‘ app=sysfinance ctl=‘admin_tradeList‘ act=index}>" method="post">
<{input type="text" id="shop_name" name="shop_name" value=$shop_name }>
<{button id=‘index-form-submit‘ type="submit" label="搜索"|t:‘search‘}>
</form>
(2)foreach遍历
打印数组:<{json from=$data}>
<{foreach from=$data item=value key=key}>
<tr>
<td><{$value.CreateTime}></td>
</tr>
<{/foreach}>
(3)radio选中状态
<tr>
<th><{t}>是否启用:<{/t}></th>
<td>
<div class=‘prop_type‘>
<label><input type="radio" name="disabled" value="0" <{if $brandInfo.disabled == 0}> checked <{/if}> /><{t}>是<{/t}></label>
<label><input type="radio" name="disabled" value="1" <{if $brandInfo.disabled == 1}> checked <{/if}> /><{t}>否<{/t}></label>
</div>
</td>
</tr>
以上是关于tramsy模板引擎(完善中)的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript模板引擎artTemplate.js——结语