JSTL <x:set>標簽
<x:set>標簽設置一個變量的XPath表達式的值。
如果XPath表達式的結果布爾值,<x:set>設置一個java.lang.Boolean的對象,如果是一個字符串,則java.lang.String,或是一個數字則為java.lang.Number。
屬性:
<x:set>標簽具有以下屬性:
屬性 | 描述 | 必須 | 默認 |
---|---|---|---|
var | 被設置為XPath表達式的值的變量 | Yes | Body |
select | XPath表達式進行計算 | No | None |
scope | 在var屬性指定的變量範圍 | No | 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>
現在讓我們嘗試訪問上麵的JSP,這將產生以下結果:
BOOKS INFO:The price of the second book:[[book: null], [book: null]] |