freemarker循环遍历且忽略某个属性
当是id属性时, 另外处理, 作为隐藏值,不显示.
当是时间类型的属性时, 显示日期控件
<#list beans as bean>
<#if bean.col=="id">
<input type="hidden" name="id"/>
<#else>
<div style="margin-bottom:10px">
<#if bean.type!="Timestamp">
<input name="${bean.col}" class="easyui-textbox" required="true" label="${bean.label}" style="width:100%">
<#else>
<input name="${bean.col}" class="easyui-datebox" label="${bean.label}" labelPosition="left" data-options="formatter:myformatter,parser:myparser" style="width:100%;">
</#if>
</div>
</#if>
</#list>