概述
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>
转载于:https://blog.51cto.com/4435218/1437008
最后
以上就是务实白猫为你收集整理的在ftl下的遍历方法的全部内容,希望文章能够帮你解决在ftl下的遍历方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复