struts2的action與jsp之間傳遞參數__js

來源:互聯網
上載者:User


1、瀏覽器往Action傳遞參數:

    在Action中設定屬性,並為屬性設定get/set方法。傳遞參數時按照屬性的名字賦值即可。如xxx?name=aa

    取值用request.getPrameters("屬性名稱“);

public class UserAction {      private String name;      private User user;      public String userAdd() {          System.out.print(user.getName());          System.out.print(name);          return "success";      }      public String getName() {          return name;      }      public void setName(String name) {          this.name = name;      }      public User getUser() {          return user;      }      public void setUser(User user) {          this.user = user;      }  }  

註:struts2不會使用單例模式,因此每次的請求都是new 一個新對象。


2、Action 往瀏覽器介面傳遞參數:

     方式有三種:

    1)種:直接給Action 屬性(有get/set方法)賦值 ,JSP中用 <s:property value="OGNL運算式"/> 取值,注意返回結果類型為forward  

    例如: <s:property value="name"/>   <s:property value="user.name"/>  

     2)種:通過ActionContext傳值,在Action中所調用的方法中加入:


ActionContext.getContext().put("key", "value");  

      JSP中用  <s:property value="#key"/>取值 

   

    3)種:通過request、session 傳值。Action方法中通過取得HttpServletRequest 、HttpSession 和 Map對象設定值,

例如:


ServletActionContext.getRequest().setAttribute("arg0", "value"); ServletActionContext.getRequest().getSession().setAttribute("arg0", "value"); ActionContext.getContext().getSession().put("key", "value");

jsp頁面通過:


【轉自】 http://cailangwei.blog.163.com/blog/static/131458579201287112552485/


相關文章

聯繫我們

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