在昨天做项目中的时候,发现一个好的东东,给大家分享一下,希望对大家有所帮助!
struts使用下拉列表框LableValueBean的使用方法:
A:首先定义一个html标签:<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
B:在页面中使用<html:form></html:form> 表单
C:在<html:form/> 表单中如<td width="70%"></td>加入以下代码如:
<td width="70%">
<html:select name="autoForm" property="sex" >
<html:options collection="sexList" labelProperty="label" property="value"/>
<html:select>
</td>
其中property是指JavaBean中的属性值,collection指的是在Action类方法中的设置的如性别集合
D:在Action中的方法中加入下代码(比如我想做的是为修改进行的查询,此时有一个为修改查询方法的方法如goUpdate):
public String toUpdate(AutoActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception {
List<org.apache.struts.util.LabelValueBean> sexList = new ArrayList<LabelValueBean>();
sexList.add(new LabelValueBean("全部",""));
sexList.add(new LabelValueBean("男","1"));
sexList.add(new LabelValueBean("女","2"));
request.setAttribute("sexList", sexList);
//用LabelValueBean这个类,就不用指定labelProperty property了
return "toupdate";
}
备注:假如是动态Form,要在form-beans中加入以下代码,其中name,sex,phone,birthday都是我的JavaBean属性
<form-beans>
<form-bean name="autoForm"
type="com.unisure.common.form.AutoActionForm" >
<!-- 声明一个简单属性 -->
<form-property name="name" type="java.lang.String"/>
<!-- 声明一个索引属性 -->
<form-property name="sex" type="java.lang.String" />
<!-- 声明一个映射属性 -->
<form-property name="phone" type="java.lang.String" />
<!-- 声明一个嵌套属性 -->
<form-property name="birthday" type="java.util.Date" />
</form-bean>
</form-beans>
分享到:
相关推荐
在Struts框架中,使用AJAX(异步JavaScript和XML)技术可以实现动态交互的用户界面,例如这里的三级下拉列表。这个例子是为学生注册系统设计的,它需要用户选择学院、专业和班级,每一步的选择都会影响下一步的选项...
labelvaluebean
在页面中,我们使用了`<html:select>`标签来创建下拉列表,用于选择年份、月份和日期。 ```jsp ()" styleId="year"> ()" styleId="month"> ()" styleId="day"> ``` 这里需要注意的是,`yearCollection` 和 ...
在Java开发中,三级联动通常指的是在用户界面中,三个下拉列表框(dropdown lists)之间存在关联性,即选择其中一个下拉框的选项会动态更新其他下拉框的内容。这种功能在地域选择、分类导航等场景中非常常见。在给定...
- **`<html:select>`**: 用于创建下拉列表和多选列表。 ```xml <html:option value="htmlselect.orange">Orange ``` 可以使用JavaBean来填充选项: ```xml (); colorCollection.add(new org.apache....