JSP 带参数的include指令

前面我们讨论了 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") %>

输出:

JSP 带参数的include指令

在上面的例子中,我使用session隐式对象传递了参数,但是您也可以使用请求,页面和application隐式对象传递它们。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程