在ftl下的遍历方法

JSP +SERVLET 不用标签

限制:页面需要用ftl

 

zai freemarker中使用下拉框 selection来提供后台查询出的数据给用户选择

以时间段为例。

id     time

1      0:00-1:00

2      1:00-2:00

...

 

通过sql语句查询出数据对象(select id ,time from xxx where xxx 

 <select id="timeid" name="timeid" >
            <option value="-1">请选择时段</option>
            <#list sdList.items as sd>
                     <option value="${sd.id!""}"  <#if (sd.id==mxtxt.timeid)> selected</#if>>${sd.mxtime!""}</option>
                </#list>
           </select>

你可能感兴趣的:(sql语句,时间段,where)