freemarker循环遍历且忽略某个属性

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>

上一篇:SpringBoot2 游戏集成测试组件有哪些方法?


下一篇:SpringBoot2 集成测试组件,七种测试手段对比