Jsp教程:action,form/普通欄位的對應寫法

來源:互聯網
上載者:User

   又是改BUG的日子,今天遇到的這個很頭疼,尤其是在別人代碼的基礎上改,更是頭大。經過2個多小時,有一處錯誤感覺很莫名其妙,讓旁邊的同事看了一會,才查出原來是自己犯了一個幼稚的錯誤,太不注意細節了:

  針對一個Form正確寫法如下:

以下為引用的內容:
<% ExpenseItemForm form = (ExpenseItemForm) request.getAttribute         ("oldexpenseItemForm"); 
%> 
<input name="expenseItemNumber" type="text" class="input" 
  value="<%=form.getExpenseItemNumber()%>" size="20"> 


Action-------------------- 
ExpenseItemForm oldexpenseItemForm = new ExpenseItemForm(); 
oldexpenseItemForm.setExpenseItemNumber(oldexpenseItemNumber); 



request.setAttribute("oldexpenseItemForm", oldexpenseItemForm);

  針對一個普通的欄位正確寫法如下:

以下為引用的內容:
<input name="roleId" class="" id="roleId" size="22" 
  value="<%=request.getAttribute("roleId")%>" type="hidden"> 
或<input name="roleId" class="" id="roleId" size="22" 
  value="${roleId}" type="hidden"> 
Action-------------------- 
request.setAttribute("roleId", roleId);
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.