Struts2 多个复选框示例

该博客介绍了在Struts 2框架中如何使用<s:checkboxlist>标签创建并处理多个复选框。内容涵盖动作类、结果页面、配置文件以及演示。当用户选择多个复选框时,选中值会以逗号分隔的形式存储。提供了完整的示例代码和演示链接,帮助开发者理解如何实现这一功能。
摘要由CSDN通过智能技术生成

下载它– Struts2-multiple-checkboxes-example.zip

在Struts 2中,可以使用<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对象将其存储。

例如,如果选中“ red”和“ yellow”选项,则选中的值将与逗号结合, yourColor =“ red,yellow”

private String yourColor;
	
public void setYourColor(String yourColor) {
	this.yourColor = yourColor;
}

阅读有关如何为多个复选框设置默认值的文章。

Struts 2 <s:checkboxlist>示例

一个完整的Struts 2示例,可以通过<s:checkboxlist>创建多个具有相同名称的复选框 ,并存储选中的值并将其显示在另一个页面中。

1.行动

生成并保存多个复选框值的动作类。
CheckBoxListAction.java

package com.mkyong.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.mkyong.common.action.CheckBoxListAction" method="display">
	<result name="none">pages/checkBoxlist.jsp</result>
   </action>
		
   <action name="resultAction" class="com.mkyong.common.action.CheckBoxListAction">
	<result name="success">pages/result.jsp</result>
   </action>
  </package>
	
</struts>

5.演示

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

Struts 2 checkboxlist example

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

Struts 2 checkboxlist example

参考

  1. Struts 2复选框列表文档

翻译自: https://mkyong.com/struts2/struts-2-scheckboxlist-multiple-check-boxes-example/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值