我有面1.2面臨ADF無法獲得請求參數
在我管理的bean我試圖訪問POST請求的參數,但總是得到空的ADF Web應用程序。
這是我的帖子的形式,我張貼的面孔:
<form name="input" action="http://127.0.01:7072/myapplication/faces/login.jspx" method="post">
<input type="hidden" name="user" id="user" value="myUserName"/>
<input type="submit" value="Submit"/>
</form>
FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap().get("user");
FacesContext.getCurrentInstance().getExternalContext().getRequest().getParameter("user");
但我總是零和的形式,我得到的方法是:GET
,奇怪!
這是你生成的jsf表單的html嗎?或者您是否嘗試發佈純html表單? – bhdrk
@bhdrk我嘗試發佈純html格式 – GingerHead
然後閱讀此[post](http://stackoverflow.com/questions/12175763/how-to-send-post-request-to-jsf-component-without-using- html-form)@BalusC。它可以給你想法。 – bhdrk