博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Struts2 控制标签:<s:if>、<s:elseif>和<s:else>
阅读量:6272 次
发布时间:2019-06-22

本文共 2044 字,大约阅读时间需要 6 分钟。

单独使用<s:if>标签<s:if test="%{#variable=='String 1'}">

  This is String 1
</s:if>

也可以和<s:elseif>标签一起使用:

<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>+<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>

上面的这些语句都是正确的。下面通过示例程序来学习<s:if>、<s:elseif>和<s:else>标签的用法。

1、Action

IfTagAction类,带有一个String属性,该属性包含有字符串值“Struts 2”。

IfTagAction.javapackage com.xuejava.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、JSP页面

一个JSP页面,使用<s:if>、<s:elseif>和<s:else>标签来执行对“framework”变量的条件检查。

if.jsp<%@ page contentType="text/html;charset=UTF-8" %>

<%@ taglib prefix="s" uri="/struts-tags" %> <html>
<head>
</head>
<body>
   <h1>Struts 2 If, Else, ElseIf tag 示例</h1>
  <s:set name="webFramework" value="framework"/>
  <s:if test="%{#webFramework=='Struts 2'}">
    这是Struts 2
  </s:if>
  <s:elseif test="%{#webFramework=='Struts 1'}">
    这是Struts 1
  </s:elseif>
  <s:else>
    其它框架
  </s:else> 
</body>
</html>3、struts.xml

使用struts.xml将所有的东西链在一起。

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.xuejava.common.action.IfTagAction" >
     <result name="success">pages/if.jsp</result>
   </action> 
</package>
</struts>4、测试

访问URL:http://localhost:8080/Struts2Example/ifTagAction.action。

>

转载地址:http://flopa.baihongyu.com/

你可能感兴趣的文章
echarts图表初始大小问题及echarts随窗口变化自适应
查看>>
Inherits、CodeFile、CodeBehind的区别
查看>>
创建一个SimpleDlg
查看>>
使用XML生成菜单
查看>>
udp,tcp对于socket的写法
查看>>
第二周个人赛
查看>>
推断Windows版本号新方法
查看>>
2017-4-18 ADO.NET
查看>>
RSuite 一个基于 React.js 的 Web 组件库
查看>>
技术博客网址收藏
查看>>
python 金融分析学习
查看>>
授人以渔不如授人以鱼
查看>>
matlab练习程序(图像Haar小波变换)
查看>>
【Java】从域名得到ip
查看>>
Mysql索引会失效的几种情况分析
查看>>
LVM逻辑卷
查看>>
zoj3591 Nim(Nim博弈)
查看>>
canvas绘图
查看>>
poj - 3039 Margaritas on the River Walk
查看>>
bootstrap(5)关于导航
查看>>