<%...@ page language="java" contentType="text/html;charset=UTF-8"%>
<%...@taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui"%>
<%...@taglib uri="http://beehive.apache.org/netui/tags-databinding-1.0" prefix="netui-data"%>
<%...@taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
<%...@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%...@page import="com.bea.content.*" %>
<netui:html>
<head>
<netui:base/>
</head>
<netui:body>
<!-- for loop to display all the items -->
<table border="1">
<tr>
<td>Title</td>
<td>Author</td>
<td>E-mail</td>
</tr>
<c:forEach var="node" items="${pageFlow.currentPage}">
<c:set var="nodeValue" scope="page" value="${node}"/>
<%...
Node node= (Node)pageContext.getAttribute("nodeValue");
Property titleProp = node.getProperty("Title");
%>
<tr>
<td><c:if test="<%=titleProp != null %>"><%=titleProp.getValue().getStringValue()%></c:if></td>
<td></td>
<td></td>
</tr>
</c:forEach>
</table>
</netui:body>
</netui:html>
使用forEach中的變數node:
用<c:set var="nodeValue" scope="page" value="${node}"/>將變數"node" set 到pageContext中,再通過pageContext.getAttribute("nodeValue");獲得。
<%
Node node= (Node)pageContext.getAttribute("nodeValue");
Property titleProp = node.getProperty("Title");
%>
注意:在set 標籤中,如果屬性scope="request"即通過request.getAttribute("nodeValue");獲得,如果scope="session"即通過request.getSession().getAttribute("nodeValue");獲得。