我有一个由struts表单bean支持的jsp页面。我需要通过ajax将表单数据发送到servlet。我通过ajax发送表单时使用form.serialize。但是当表单数据进入servlet时,我无法在任何表单字段上执行request.getParameter。
以下是代码段:
function getValue()
{
var frm = $('form[name="myForm"]');
alert(frm.serialize()) ; //shows all values as a nice query string as action=Register&flow=false&fname=john& .........
$.post("myServlet", {data: frm.serialize()},function(response){
alert(response);
});
}
<html:form name="myForm" method="post" action="/myAction.to" type="com.xyz.myForm">
.
.
.
<div class="buttonCenter">
<a href="javascript:getValue()">
Continue
</a>
</div>
.
.
.
</html:form>
public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
logger.info(req.getParameter("fname")); //Shows null
//some other code
}
这里有什么我想念的吗? 我真的很困惑,任何反馈都会受到高度赞赏。