当前位置: 首页 > 教程 > Struts2 >

Struts2 if,elseif,else标签示例

精华
小牛编辑
155浏览
2023-03-14

Struts2 <s:if>, <s:elseif>, <s:else>标签示例用于执行基本的条件检查。这里创建一个Web工程:strut2iftag,来演示在多个复选框如何设置的默认值,整个项目的结构如下图所示:


<s:if> 标签可以单独使用。
<s:if test="%{#variable=='String 1'}">
	This is String 1
</s:if>

或使用 <s:elseif> 标签

<s:if test="%{#variable=='String 1'}">
	This is String 1
</s:if>
<s:elseif test="%{#variable=='String 2'}">
    This is String 2
</s:elseif>
和/或单/多<s:else>标签。
<s:if test="%{#variable=='String 1'}">
	This is String 1
</s:if>
<s:elseif test="%{#variable=='String 2'}">
    This is String 2
</s:elseif>
<s:else>
    Other Strings
</s:else>
以上所有的陈述是正确的。让我们看一个例子来说明使用 Struts2 的“If, elseIf 和 else" 标签。

1. 动作

一个Action类的字符串属性,其中包含了“Struts 2”的值。

IfTagAction

package com.yiibai.common.action;

import com.opensymphony.xwork2.ActionSupport;
 
public class IfTagAction extends ActionSupport{
 
	private String framework = "Struts 2";

	public String getFramework() {
		return framework;
	}

	public void setFramework(String framework) {
		this.framework = framework;
	}

	public String execute() {
		return SUCCESS;
	}
}

2. If, elseIf 和 else 标签示例

JSP页面来显示使用 if, elseif 和 else 标签的执行检查“framework”变量。

if.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>
 <html>
<head>
</head>
 
<body>
<h1>Struts 2 If, Else, ElseIf tag example</h1>

<s:set name="webFramework" value="framework"/>

<s:if test="%{#webFramework=='Struts 2'}">
	This is Struts 2
</s:if>
<s:elseif test="%{#webFramework=='Struts 1'}">
    This is Struts 1
</s:elseif>
<s:else>
    Other framework
</s:else>

</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="ifTagAction" 
			class="com.yiibai.common.action.IfTagAction" >
			<result name="success">pages/if.jsp</result>
		</action>
		
	</package>
		
</struts>

4. 示例

http://localhost:8080/struts2iftag/ifTagAction.action


参考

  1. Struts2 If 标签文档
  2. Struts2 elseIf 标签文档
  3. Struts2 else 文档
代码下载 - http://pan.baidu.com/s/1gdpYY7D