html-el:optionsCollection,html-el:options,JSTL c:forEach用法比较

来源:互联网 发布:投影仪用无线没有网络 编辑:程序博客网 时间:2024/04/29 01:17

前提,areaInfoList是存在 request 或更高级别作用域的一个 List 实例。


1、html-el:optionsCollection 用法:

   <html-el:select property="area_code" styleId="area_code">
       <html-el:option value="">请选择所属省份</html-el:option>
       <html-el:optionsCollection name="areaInfoList" label="area_name" value="area_code" />
   </html-el:select>
   代码较少,有回显功能。

2、html-el:options用法:

   <html-el:select property="area_code" styleId="area_code">
       <html-el:option value="">请选择所属省份</html-el:option>
       <html-el:options collection="areaInfoList" labelProperty="area_name" property="area_code" />
   </html-el:select>
   代码较少,有回显功能,但属性名称不易理解。

3、JSTL的用法:

   <html-el:select property="area_code" styleId="area_code">
       <html-el:option value="">请选择所属省份</html-el:option>
       <c:forEach var="cur" items="${areaInfoList}">
           <html-el:option value="${cur.area_code}">${cur.area_name}</html-el:option>
       </c:forEach>
   </html-el:select>
   代码较多,没有回显功能