日期:2014-05-16 浏览次数:20490 次
------------------?android培训、java培训、期待与您交流!?------------------
JSTL:jsp标准标记库
EL:表达式语言
EL表达式必须以“${XXX}”来表示,其中“XXX”部分就是具体表达式内容。
EL默认变量:
1、默认变量pageScope、requestScope、sessionScope、applicationScope
?? 例:使用requestScope变量的EL表达式
?? <%
???? request.setAttribute("sampleValue",??new Integer(10));
?? %>
?? ${requestScope.sampleValue}
2、默认变量param、paramValues
???????? 这两个默认变量包含请求参数的集合,param表明请求包含的参数为单一控件,paramValues表明请求包含的参数为控件数组。
<form action="SampleJsp.jsp">
??? <input type="text"?
?????????? name="sampleValue" value="10">
??? <input type="text"
?????????? name="sampleValue" value="11">
??? <input type="text"
?????????? name="sampleSingleValue"?
???????????????????????????????? value="SingleValue">
??? <input type="submit" value="Submit">
</form>
通过递交将请求参数传送到SampleJsp.jsp。
<%@ page contentType="text/html;?
?????????????????????????????????????????? charset=UTF-8"%>
<html>
? <body>
??? ${paramValues.sampleValue[1]} <br>
??? ${param.sampleSingleValue} <br>
? </body>
</html>
?????? 控件数组参数的EL表达式使用“[]”来指定数组下标。
????? 3、认变量header、headerValues
?????? 这两个默认变量包含请求参数头部信息的集合,header变量表示单一头部信息,headerValues则表示数组型的头部信息。
4、默认变量cookie
?????? 包含所有请求的cookie集合,集合中的每个对象对应javax.servlet.http.Cookie。
?
就记得这些了。。。
?
-----------------------?android培训、java培训、期待与您交流!?----------------------
详情请查看:http://edu.csdn.net/heima