struts的option用法

 
  1. <html:select  property="beanId">   
  2.     <html:options collection="list" property="id" labelProperty="name" />   
  3. </html:select>   
  4. <html:select  property="beanId">   
  5.     <html:optionsCollection  name="list" label="name" value="id" />   
  6. </html:select>  
  7. 最好使用struts里的option里的属性标签
  8. 1.<html:option>
    <html:option value="value">displayName</html:option>
    其中value为实际使用的值(赋值到ActionForm对应的属性中) displayName页面中显示的信息.
    例:<html:option value=""></html:option>显示一个空白选择,值为"".

    2..<html:options>
    <html:options collection="collection" labelProperty="displayName" property="value"/>
    其中collection为一个集合,一般是个ArrayList,displayName为前台显示的名称,value为后台实际使用的值.
    例:<html:options collection="arrayList" labelProperty="name" property="id" />

    3..<html:optionsCollection>
    <html:optionsCollection property="actionForm.property" label="displayName" value="value"/>
    其中property为ActionForm中的一个属性,为一个集合.displayName为前台显示的名称,value为后台实际使用的值.
    例:<html:optionsCollection property="listProperty" label="name" value="id" />

    补充一点:如果要从 数据库去取数据,一般是在 action 里调用 DAO ,把结果存入一个ArrayList作为 request 的一个属性传到页面上; 这时一般用 <html:options .../> 标签.另外,如果数据不从数据库去取,而是代码固定的,则一般把这种放到 ActionForm 里,作为属性在页面上取,这时一般用 <html:optionsCollection ... />

你可能感兴趣的:(struts的option用法)