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>
&nbsp; &nbsp;
<label><input type="radio" name="disabled" value="1" <{if $brandInfo.disabled == 1}> checked <{/if}> /><{t}>否<{/t}></label>
</div>
</td>
</tr>

以上是关于tramsy模板引擎(完善中)的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript模板引擎artTemplate.js——结语

Spring Boot实战:模板引擎

PHP的自定义模板引擎

在 Express 中使用模板引擎

大神手把手教你写一个页面模板引擎,只需20行Javascript代码!

Express中使用Pug写模板引擎