首页 > 代码库 > el表达式
el表达式
<%@page import="cn.bdqn.bean.News"%> <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP ‘el.jsp‘ starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="http://www.mamicode.com/styles.css"> --> </head> <%-- el表达式 :(Expression Language) 目的:就是为了简化我们的表达式 语法结构:${表达式} 着重点 在于数据的显示! 表达式必须被放在某个作用于中! 作用域: page pageScope request requestScope session sessionScope application applicationScope el表达式 默认的作用域 搜索顺序 page --> request -->session -->application 我们只需要把数据放入 指定的作用域,那么我们就可以从指定的作用域中取到数据! 我们把值放进了page作用域中,其他的作用域拿不到值! ${aName} 不加作用域 按照 默认的作用域 搜索顺序 ${pageScope.pName} 值从page作用域中 查询 --%> <body> <% //把单个字符串放入作用域 pageContext.setAttribute("pName", "小白"); request.setAttribute("rName", "小黑"); session.setAttribute("sName", "小红"); application.setAttribute("aName", "小兰"); //把集合放入作用域 ArrayList<String> lists=new ArrayList(); lists.add("小白兔"); lists.add("白又白"); request.setAttribute("list", lists); //把对象放入作用域 News news=new News(); news.setAuthor("admin"); news.setCreateDate(new Date()); session.setAttribute("news", news); %> ${5.02}<br/> ${5>2}<br/> ${(1==2)?"你好":"不好"}<br/> page作用域: ${pageScope.pName}<br/> request作用域: ${requestScope.rName} <br/> session作用域: ${sName}<br/> application作用域: ${aName}<br/> 拿到集合中的第一个元素:${list[0]}<br/> 获取新闻的创建时间(使用最多):${news.createDate} <br/> 获取新闻的创建时间:${news.getCreateDate()} <br/> 获取新闻的创建时间:${news["author"]} <br/> </body> </html>
el表达式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。