java後臺為前臺JSP頁面的SELECT標籤設定值
阿新 • • 發佈:2019-02-18
後臺寫法:
List<LabelValueBean> roleList = new ArrayList<LabelValueBean>();
request.setAttribute("roleList", roleList);
dto = ctlBL.getUserRolesNotInProcess(dto);
List<UserRoleInfo> list = dto.getUserRoleList();
for(UserRoleInfo info : list){
//前面的是頁面顯示的值,後面的是要儲存的值
roleList.add(new LabelValueBean(info.getRolename(), info.getRoleid().toString()));
}
if(roleList.isEmpty()){
roleList.add(new LabelValueBean("", ""));
}
頁面寫法:
<html:select
property="prroleid" style="width: 120px;"
errorStyleClass="inputError imeActive" tabindex="2"
onchange="changePrRolename()">
<html:options collection="roleList" property="value" name=""
labelProperty="label"/>
</html:select>
原理就是在後臺做一個LabelValueBean的list,發到前臺的option處,通過標籤自動進行值的處理~~~