zoukankan      html  css  js  c++  java
  • 今日总结

    今天的内容:

    学习了jsp EL隐含对象:

    隐含对象描述
    pageScope page 作用域
    requestScope request 作用域
    sessionScope session 作用域
    applicationScope application 作用域
    param Request 对象的参数,字符串
    paramValues Request对象的参数,字符串集合
    header HTTP 信息头,字符串
    headerValues HTTP 信息头,字符串集合
    initParam 上下文初始化参数
    cookie Cookie值
    pageContext 当前页面的pageContext

    pageContext对象

    pageContext对象是JSP中pageContext对象的引用。通过pageContext对象,您可以访问request对象

    Scope对象

    pageScope,requestScope,sessionScope,applicationScope变量用来访问存储在各个作用域层次的变量

    param和paramValues对象

    param和paramValues对象用来访问参数值,通过使用request.getParameter方法和request.getParameterValues方法

    header和headerValues对象

    header和headerValues对象用来访问信息头,通过使用 request.getHeader方法和request.getHeaders方法。

    问题:无

    明天的打算:继续学习Javaweb

  • 相关阅读:
    python学习之路-day1-python基础1
    JSON.NET基本使用
    tortoiseSVN 设置ignore
    一个简单的身份证校验
    一个HttpWebRequest工具类
    linq to NHibernate
    python-plot and networkx绘制网络关系图
    DDoS攻击及防御措施
    白帽子原则
    认识特洛伊木马
  • 原文地址:https://www.cnblogs.com/MXming/p/14162935.html
Copyright © 2011-2022 走看看