zoukankan      html  css  js  c++  java
  • JSTL(c标签)与Struts2(s标签)标签的常用功能对比

    1. 条件标签 JSTL

    复制代码
    <c:if test="${user.password == 'hello'}">     
    <c:choose>         
    <c:when test="${user.age <= 18}">             
    <font color="blue"/>         
    </c:when>         
    <c:when test="${user.age <= 30 && user.age > 18}">             
    <font color="red"/>         
    </c:when>         
    <c:otherwise>             
    <font color="green"/>         
    </c:otherwise>     
    </c:choose>
    </c:if>
    复制代码

    STRUTS2:

    复制代码
    <s:if test="#user.age <= 18">     
    <font color="blue"/>
    </s:if>
    <s:elseif test="#user.age <= 30 && user.age > 18">     
    <font color="red"/>
    </s:elseif>     
    <font color="green"/>
    </s:else>
    复制代码

    2. 迭代标签
    JSTL:   

    复制代码
    <c:forEach var="user" items="${users}">     
    <c:out value="${user.userName}"/>
    </c:forEach><!-- 迭代固定次数 -->
    <c:forEach var="i" begin="1" end="10" step="3">    
    <c:out value="${i}"/>
    </c:forEach><!-- 这种循环相当于for(int i=1; i<10; i++), 其中step是指迭代的步长,默认为1. -->
    复制代码

    struts2:

    复制代码
    <s:iterator value="#users" status="stuts">     
    <s:if test="#stuts.odd == true">   <!-- 判断是否为奇数行 -->         
    <s:property value="userName"/>     
    </s:if>     
    <s:else>         
    <s:property value="passWord"/>
    </s:else>
    </s:iterator>
    复制代码

    3. URL相关标签    JSTL:

    复制代码
    <!-- 绝对路径 -->
    <c:import url="http://127.0.0.1:8080/hello/hello.jsp"/><!-- 相对路径 -->
    <c:import url="hello.jsp"/><!-- Encode -->
    <a href="<c:url value='hello.jsp'><c:param name='userName' value='cyanbomb' /></c:url>"></a><!-- 传递参数到指定的URL -->
    <c:import url="hello.jsp" charEncoding="gb2312">      <c:param name="userName" value="cyanbomb"/></c:import><!-- URL重定向 -->
    <c:redirect url="${myurl}"/><!-- 构造URL -->
    <c:url value="myurl" var="hello.jsp" scope="session"><c:param name="userName" value="cyanbomb"/></c:url>
    复制代码

    Struts2:

    <a href='<s:url value="/hello.jsp" />'>Hello</a><br />
    <s:url id="url" value="/hello.jsp"><s:param name="name">cyanbomb</s:param></s:url>
    <s:a href="%{url}">Hello</s:a>

    解除的疑问,list遍历问题

    像这样一个list,里面有3条记录,每条记录包含两个对象,我把结果集(lstRooms)request到了页面,想遍历显示RrmRooms里的id,和RrmRoomType里的name. 我用JSTL实现如下:

    复制代码
    <table>     
    <c:forEach var="rm" items="${lstRooms}">         
    <tr>             
    <td>${rm[0].id}</td>             
    <td>${rm[1].name}</td>         
    <tr>     
    </c:forEach></table>
    复制代码

    STRUTS2实现如下:

    复制代码
    <table>     
    <s:iterator value="#lstRooms" status="stat">         
    <tr>             
    <td>
    <s:property value="#lstRooms[#stat.index][0].id"/>
    </td>             
    <td>
    <s:property value="#lstRooms[#stat.index][1].name"/>
    </td>         
    <tr>     
    </s:iterator>
    </table>
    复制代码
  • 相关阅读:
    D. Babaei and Birthday Cake--- Codeforces Round #343 (Div. 2)
    Vijos P1389婚礼上的小杉
    AIM Tech Round (Div. 2) C. Graph and String
    HDU 5627Clarke and MST
    bzoj 3332 旧试题
    codeforces 842C Ilya And The Tree
    codesforces 671D Roads in Yusland
    Travelling
    codeforces 606C Sorting Railway Cars
    codeforces 651C Watchmen
  • 原文地址:https://www.cnblogs.com/jirglt/p/2759845.html
Copyright © 2011-2022 走看看