当前位置: 代码迷 >> HTML/CSS >> html:options 总结
  详细解决方案

html:options 总结

热度:884   发布时间:2012-08-02 11:35:26.0
html:options 小结

jsp页面部分调用代码:

<html:select property="userfield" >
?????? <html:options collection="plist" property="pkey" labelProperty="pvalue" />????
?????? </html:select>

???? Action中传出来

List list = new ArrayList();
????? for(int i=0;i<5;i++){
?????? Map map = new HashMap();
?????? map.put("pvalue",valuea);
?????? map.put("pkey",keya);
?????? list.add(map);
????? }

???? request.setAttribute("plist",list);

userfield,是一般是数据库表中要从其他表读取的字段,并且是列表的,比如数据类型,字典等.

  相关解决方案