el中的作用域
el中的作用域
对应关系
pageContext
当前页的pageContext对象
pageScope
把page作用域中的数据映射为一个map对象
requestScope
把request作用域中的数据映射为一个map对象
sessionScope
把session作用域中的数据映射为一个map对象
applicationScope
把application作用域中的数据映射为一个map对象
param
对应request.getParameter()
paramValues
对应request.getParameterValues()
header
对应request.getHeader()
headerValues
对应request.getHeaderValues()
cookie
对应request.getCookies()
initParam
对应ServletContext.getInitParamter()