EL表达式页面传值(${param}和requestScope)

1.对于浏览器地址栏中的地址拼接参数

http://localhost:8888/Test/index.jsp?test=123

  • EL表达式获取
<body>
    ${param.test}
body>
  • Java脚本获取
<body>
      <%=request.getParameter("test") %>
body>

2.向request作用域赋值

<%
    request.setAttribute("test", "123");
 %>
//java 获取方式
  <body>
      <%request.getAttribute("test"); %>
  body>
//requestScope方式
  <body>
    ${requestScope.test}
//EL获取方式
  <body>
    ${test}
  body>

${param.name} 等价于 request.getParamterValues(“name”),{param[name]}
这两种方法一般用于服务器从页面或者客户端获取的内容。

${requestScope.name} 等价于 request.getAttribute(“name”)

等价于${ name}

一般是从服务器传递结果到页面,在页面中取出服务器保存的值。
可以传到客户端也可以传到服务器里面

要得到属性的话可以这样${scope.attribute}其中scope指 pageSocpe、requestScope、sessionScope、applicationScope,attribute 指的就是你在某个scope中设置的属性了

你可能感兴趣的:(前端)