Forward指令是Jsp动作指令之一,可以用于将页面响应转发到另外的页面。既可以转发到静态页面,也可以转发到动态页面。
就像表单参数的转发一样,本来没什么好说,但是有几个特性还是要注意一下的。用一个例子就能够完全说明这个问题了。
假设一个工程下面有三个页面,form.jsp是给用户填写表单的,然后把填写的参数传递到forward.jsp,之后不作任何的停留与休整,forward.jsp直接把自己的参数传递到result.jsp。
form.jsp的代码如下,就一个简单得不能再简单的表单:
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>form</title> </head> <body> <form method="post" action="forward.jsp"> <input type="text" name="formPageParam" /> <input type="submit" value="go!" /> </form> </body> </html>
forward.jsp的代码如下,这是jsp中独有的标签,意思是把forwardPageParam这个值为forwardPageParamValue参数传递到result.jsp页面:
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>forward</title> </head> <body> <jsp:forward page="result.jsp"> <jsp:param value="forwardPageParamValue" name="forwardPageParam"/> </jsp:forward> </body> </html>
之后,result.jsp的代码如下,同时请求form.jsp与forward.jsp的参数:
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>result</title> </head> <body> <%=request.getParameter("formPageParam")%> <%=request.getParameter("forwardPageParam")%> </body> </html>
这三个页面的运行效果如下:
可以发现,form.jsp传递给forward.jsp没有丢失,纵使forward.jsp没有把这个参数取下来再传递给result.jsp,但result.jsp同时能够获取到form.jsp与forward.jsp的参数,这就是Jsp中Forward指令的特性,原来页面的参数是不会丢失的。并且,地址栏显示的地址是forward请求页forward.jsp,整个页面读取出来的内容则是forward结果页result.jsp的内容。
时间: 2024-10-08 14:28:31