JSP jstl-<x:set> 标记

  • jstl-<x:set> 标记

    <x:set>标签集以XPath表达式的值的变量。如果XPath表达式的结果为布尔值,则<x:set>标记将设置一个java.lang.Boolean对象;否则,该值为false。对于字符串,java.lang.String; 以及一个数字,java.lang.Number。
  • 属性

    属性 描述 必需 默认值
    var 设置为XPath表达式值的变量 Body
    select 要评估的XPath表达式 没有
    scope var属性中指定的变量范围 Page
  • 示例

    以下示例将显示如何使用<x:set>标记-
    
    <%@ taglib prefix = "c" uri = "http://java.sun.com/jsp/jstl/core" %>
    <%@ taglib prefix = "x" uri = "http://java.sun.com/jsp/jstl/xml" %>
    
    <html>
       <head>
          <title>JSTL Tags</title>
       </head>
    
       <body>
          <h3>Books Info:</h3>
    
          <c:set var = "xmltext">
             <books>
                <book>
                   <name>Padam History</name>
                   <author>ZARA</author>
                   <price>100</price>
                </book>
                
                <book>
                   <name>Great Mistry</name>
                   <author>NUHA</author>
                   <price>2000</price>
                </book>
             </books>
          </c:set>
    
          <x:parse xml = "${xmltext}" var = "output"/>
          <x:set var = "fragment" select = "$output//book"/>
          <b>The price of the second book</b>: 
          <c:out value = "${fragment}" />
       </body>
    </html>
    
    上面的代码将产生以下结果-
    
    Books Info:
    
    The price of the second book:[[book: null], [book: null]]