Struts2 <s:checkboxlist>多個複選框例子
這裏創建一個Web工程:struts2checkboxlist,來演示在多個複選框如何設置的默認值,整個項目的結構如下圖所示:
在Struts2,可以使用<s:checkboxlist>標籤來使用相同的名稱來創建多個複選框。唯一的問題是如何把握變量中的多個檢查值? 例如,
public List
colors = new ArrayList
colors.add("red");
colors.add("yellow");
colors.add("blue");
colors.add("green");
return colors;
}
<s:checkboxlist label="What's your favor color" list="colors"
name="yourColor" value="defaultColor" />
一個多複選框以「紅」,「黃」,「藍」和「綠色」爲選項。如果有多個選項被選中,可以通過一個String對象存儲。
例如,如果「紅」「黃」選項被選中,選中的值將用逗號相結合連接,yourColor = 「red,yellow」.
private String yourColor;
public void setYourColor(String yourColor) {
this.yourColor = yourColor;
}
閱讀這篇文章,有關如何設置多個複選框的默認值。
Struts2 <s:checkboxlist> 示例
一個完整的Struts2實例,通過<s:checkboxlist>用相同的名稱創建多個複選框,存儲檢選中的值,並在另一頁面中顯示。
1. 動作 - Action
Action類來生成和保持的多個複選框值。
CheckBoxListAction.java
package com.yiibai.common.action;
import java.util.ArrayList;
import java.util.List;
import com.opensymphony.xwork2.ActionSupport;
public class CheckBoxListAction extends ActionSupport{
private List<String> colors;
private String yourColor;
public String getYourColor() {
return yourColor;
}
public void setYourColor(String yourColor) {
this.yourColor = yourColor;
}
public CheckBoxListAction(){
colors = new ArrayList<String>();
colors.add("red");
colors.add("yellow");
colors.add("blue");
colors.add("green");
}
public String\[\] getDefaultColor(){
return new String \[\] {"red", "green"};
}
public List<String> getColors() {
return colors;
}
public void setColors(List<String> colors) {
this.colors = colors;
}
public String execute() {
return SUCCESS;
}
public String display() {
return NONE;
}
}
2. 結果頁面
通過「s:checkboxlist」標籤渲染多個複選框。
checkBoxlist.jsp
<%@ taglib prefix="s" uri="/struts-tags" %>
Struts 2 multiple check boxes example
<s:form action="resultAction" namespace="/">
<s:submit value="submit" name="submit" />
result.jsp
<%@ taglib prefix="s" uri="/struts-tags" %>
Struts 2 multiple check boxes example
Favor colors :
3. struts.xml
5. 實例
http://localhost:8080/struts2checkboxlist/checkBoxListAction.action
http://localhost:8080/struts2checkboxlist/resultAction.action
*
*