jsp傳到java的control層的方法

來源:互聯網
上載者:User

標籤:xxxxx   標籤   str   變數   amp   rename   action   core   form表單   

jsp傳到java的control層的方法
1.form表單 用<input type="submit">提交,提交到背景參數在form表單內
<form method="post" action="saveInfo">
  <input type="text" name="username">usrenamexxx</input>
  <input type="password" name="wpassword" id="wpassword" value="wpasswordxxx"/>
  <input type="submit" value="&nbsp;儲存&nbsp;">
</form>
傳到背景路徑為:saveInfo方法post
後台接收的方式是: @RequestMapping(value="saveInfo",method=RequestMethod.POST)
傳過來的值:username=usrenamexxx;wpassword=wpasswordxxx
2.a標籤
一、<a href="wantTowhere/${userid }/${wpassword}" style="color: #428bca;">xxxxxx</a>
假設${userid }=123;${wpassword}=abc;
則傳到背景路徑為:"wantTowhere/123/abc";
後台接收的方式是: @RequestMapping(value="scoreImport/{userid}/{wpassword}")
          public String xxxx(@PathVariable Integer userid,@PathVariable Integer wpassword){
            return "";
          }
註:後台{userid}和{wpassword}中變數可以和前台不一樣。
傳過來的值:userid=123;wpassword=abc;
3.用方法傳遞
eg1:function classSelect(){
      window.location.href="<%=request.getContextPath()%>/pathxxx/"+"sid"+"/"+$(‘#s‘).val();
   }
sid可以是固定值或變數,$(‘#s‘).val()是id為s的輸入框或其它的值
則傳到背景路徑為:"wantTowhere/(sid的值)/(#s的值)";
後台接收的方式是: @RequestMapping(value="scoreImport/{userid}/{wpassword}")
          public String xxxx(@PathVariable Integer userid,@PathVariable Integer wpassword){
            return "";
          }
eg2:function xxxSelect(){
    window.location.href="<%=request.getContextPath()%>/xxxselect?id="+$(‘#xxx‘).val();
  }
則傳到背景路徑為:xxxselect另外帶過去一個變數id=($(‘#xxx‘).val()的值);
後台接收的方式是: @RequestMapping(value="xxxselect")
public String getlistSelect(Model model,Integer id){
  return xxx;
}
註:帶過去的變數名和方法中參數的名字必須一樣;
另:新遇到會再加進來,有錯的,或我沒加進來的,歡迎指正,謝謝!

jsp傳到java的control層的方法

相關文章

聯繫我們

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