溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jstl中怎么獲取Parameter參數(shù)

發(fā)布時間:2021-07-29 13:45:23 來源:億速云 閱讀:130 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關(guān)jstl中怎么獲取Parameter參數(shù),可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

param
獲取 Parameter參數(shù)

<c:choose>  
    <c:when test="${empty param.name}"> 
        Please enter your name. 
    </c:when>    
    
    <c:otherwise> 
        Hello <b><c:out value="${param.name}" /></b>! 
    </c:otherwise> 
</c:choose>

一般而言,我們在取得用戶的請求參數(shù)時,可以利用下列方法:
request.getParameter(String name)
request.getParameterValues(String name)
在EL中則可以使用param和paramValues兩者來取得數(shù)據(jù)。
${param.name}
${paramValues.name}可以取得所有同名參數(shù)的值
${paramValues.hobbies[0]}可以通過指定下標(biāo)來訪問特定的參數(shù)的值

獲取訪問路徑

${pageContext.request.contextPath}

等同于

 <%=request.getContextPath()%>

獲取Session

${sessionScope.user.sex}

      上述EL范例的意思是:從Session取得用戶的性別。

       如果使用之前JSP代碼的寫法如下:
<%
User user = (User)session.getAttribute(”user”);
String sex = user.getSex( );
%>

EL的隱含對象

EL也可以使用內(nèi)置對象中設(shè)置的屬性,需要使用特定的EL內(nèi)置對象

屬性范圍     |    在EL中的對象

Page         |     pageScope

Request      |     requestScope

Session      |     sessionScope

Application |     applicationScope

EL中使用內(nèi)置對象的屬性
${requestScope.user}
等價于
<%request.getAttribute(”user”)%>
如果不寫出特定的范圍 ,那就會在不同的范圍間進(jìn)行搜索了
例:{user}(user是在request范圍 request.setAttribute(”user”,user))
也就等于
${requestScope.user}
<%request.getAttribute(”user”)%>

pageContext對象
我們可以使用 ${pageContext}來取得其他有關(guān)用戶要求或頁面的詳細(xì)信息。下面列出了幾個比較常用的部分。
Expression                                說 明
${pageContext.request}                  |取得請求對象
${pageContext.session}                  |取得session對象
${pageContext.request.queryString}      |取得請求的參數(shù)字符串
${pageContext.request.requestURL}       |取得請求的URL,但不包括請求之參數(shù)字符串
${pageContext.request.contextPath}      |服務(wù)的web application的名稱
${pageContext.request.method}           |取得HTTP的方法(GET、POST)
${pageContext.request.protocol}         |取得使用的協(xié)議(HTTP/1.1、HTTP/1.0)
${pageContext.request.remoteUser}       |取得用戶名稱
${pageContext.request.remoteAddr }      |取得用戶的IP地址
${pageContext.session.new}              |判斷session是否為新的,所謂新的session,表示剛由server產(chǎn)生而client尚未使用
${pageContext.session.id}               |取得session的ID
${pageContext.servletContext.serverInfo}|取得主機(jī)端的服務(wù)信息

看完上述內(nèi)容,你們對jstl中怎么獲取Parameter參數(shù)有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI