Struts2 <s:checkboxlist>多個核取方塊例子


這裡建立一個Web工程:struts2checkboxlist,來演示在多個核取方塊如何設定的預設值,整個專案的結構如下圖所示:

在Struts2,可以使用<s:checkboxlist>標籤來使用相同的名稱來建立多個核取方塊。唯一的問題是如何把握變數中的多個檢查值? 例如,

public List<String> getColors() {
	colors = new ArrayList<String>();
	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.tw511.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" %>
<html>
<head>
</head>

<body>
<h1>Struts 2 multiple check boxes example</h1>

<s:form action="resultAction" namespace="/">

<h2>
	<s:checkboxlist label="What's your favor color" list="colors" 
	   name="yourColor" value="defaultColor" />
</h2> 

<s:submit value="submit" name="submit" />
	
</s:form>

</body>
</html>

result.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>
<html>

<body>
<h1>Struts 2 multiple check boxes example</h1>

<h2>
  Favor colors : <s:property value="yourColor"/>
</h2> 

</body>
</html>

3. struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
 
<struts>

 <constant name="struts.devMode" value="true" />
 	
<package name="default" namespace="/" extends="struts-default">
		
   <action name="checkBoxListAction" 
         class="com.tw511.common.action.CheckBoxListAction" method="display">
	<result name="none">/pages/checkBoxlist.jsp</result>
   </action>
		
   <action name="resultAction" class="com.tw511.common.action.CheckBoxListAction">
	<result name="success">/pages/result.jsp</result>
   </action>
  </package>
	
</struts>

5. 範例

http://localhost:8080/struts2checkboxlist/checkBoxListAction.action


http://localhost:8080/struts2checkboxlist/resultAction.action


參考

  1. Struts 2 checkboxlist 文件
下載程式碼 – http://pan.baidu.com/s/1dDCxAiH