JavaWeb——EL 数据访问语言

介绍

  EL表达式:数据访问语言,使用${} 进行定义

  作用1. 通过. 在特定域对象中直接获取属性

    2. 在特定对象中调用方法

 

属性

  el表达式的常用隐式对象

  1. pageContext

  2. pageScope

  3. requestScope

  4. sessionScope

  5. applicationScope

  6. cookie

 

使用

<%--  通过.从特定域对象访问属性  --%>
request.username: ${ requestScope.username } <br/>
request.password: ${ requestScope.password} <br/>
<%-- 从特定对象调用方法 --%>
request.getContextPath() ${ pageContext.request.getContextPath() }<br/>
request.getAttribute() ${ pageContext.request.getAttribute("username")} <br/>

 

上一篇:python基础入门 字典


下一篇:__getattr__ 和 __getattribute__ 区别