<x:forEach>標(biāo)簽用來循環(huán)遍歷XML文檔的節(jié)點(diǎn)。
<x:forEach var="<string>" select="<string>" begin="<int>" end="<int>" step="<int>" varStatus="<string>">
<x:forEach>標(biāo)簽有如下屬性:
屬性 | 描述 | 是否必要 | 默認(rèn)值 |
---|---|---|---|
select | 需要計算的XPath表達(dá)式 | 是 | 無 |
var | 用于存儲當(dāng)前項目的變量 | 否 | 無 |
begin | 迭代器的開始索引 | 否 | 無 |
end | 迭代器的結(jié)束索引 | 否 | 無 |
step | 迭代的步長 | 否 | 無 |
varStatus | 代表迭代器所存儲的狀態(tài)的變量 | 否 | 無 |
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ 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 x:forEach 標(biāo)簽</title> </head> <body> <h2>Books Info:</h2> <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"/> <ul> <x:forEach select="$output/books/book/name" var="item"> <li>Book Name: <x:out select="$item" /></li> </x:forEach> </ul> </body> </html>
運(yùn)行結(jié)果如下:
BOOKS INFO: Book Name: Padam History Book Name: Great Mistry