前面我们讨论了 JSP 中的Include指令,这里我们将看到在使用 JSP include 指令时如何传递参数。
示例
在这个例子中,我们将三个字符串参数传递给包含的 JSP 页面。
index.jsp
<html>
<head>
<title>Passing Parameters to Include directive</title>
</head>
<body>
<%@ include file="file1.jsp" %>
<%!
String country="India";
String state="UP";
String city="Agra";
%>
<%
session.setAttribute("co", country);
session.setAttribute("st", state);
session.setAttribute("ci", city);
%>
</body>
</html>
上面,我使用声明标签初始化字符串, scriptlet用于在 session 对象中设置它们。由于 sciptlet 的使用被忽视了长度,或者你可以使用<c:set>
JSTL 标签做同样的事 – 代码就像这样:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<c:set var="co" value="India" scope="session"/>
<c:set var="st" value="UP" scope="session"/>
<c:set var="ci" value="Agra" scope="session"/>
<%@ include file="file1.jsp" %>
file1.jsp
<%=session.getAttribute("co") %>
<%=session.getAttribute("st") %>
<%=session.getAttribute("ci") %>
输出:
在上面的例子中,我使用session
隐式对象传递了参数,但是您也可以使用请求,页面和application
隐式对象传递它们。