getAttribute()與getParameter的區別,attribute和parameter

來源:互聯網
上載者:User

getAttribute()與getParameter的區別,attribute和parameter

       當兩個Web組件之間為轉寄關係時,轉寄源會將要共用 request範圍內的資料先用setAttribute將資料放入到HttpServletRequest對象中,然後轉寄目標通過 getParametergetParameter()方法來獲得請求參數,例如假定welcome.jsp和authenticate.jsp之間為連結關係,welcome.jsp中有以下代碼:

authenticate.jsp

或者:


請輸入使用者姓名:

在authenticate.jsp中通過request.getParameter("username"); %>

(3)getAttribute()方法來和轉寄源組件共用request,session範圍內的資料。

假定 authenticate.jsp和hello.jsp之間為轉寄關係。authenticate.jsp希望向hello.jsp傳遞當前的使用者名稱字, 如何傳遞這一資料呢?先在authenticate.jsp中調用setAttribute()方法:

<%
String username=request.%>

在hello.jsp中通過getAttribute("username"); %>
Hello: <%=username %>

從更深的層次考慮,request.getParameter()方法返回String類型的資料。

request.setAttribute()和getParameter()取得是通過容器的實現來取得通過類似post,get等方式傳入的資料。

request.setAttribute()和getAttribute是返回對象,getAttribute()方法返回reques,sessiont範圍記憶體在的對象,而request.getParameter()方法是擷取http提交過來的資料。

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.