14

我是 Spring MVC 的新手。我有这样的表格,

<form:form action="/myaction.htm" method="post" modelAttribute="myForm" id="formid">和一个返回 json 的控制器

public @ResponseBody ResultObject doPost(@ModelAttribute("myForm") MyForm myForm){ System.out.println("myform.input"); }

我可以使用它提交这个,$("#formid").submit();并且我的 modelAttribute 工作正常,从 UI 中获取值。

我的问题是,如何以 jquery ajax 方式提交此表单?我试过这个,

$.ajax({
type:"post",
url:"/myaction.htm",
async: false,
dataType: "json",
success: function(){
alert("success");
}

});

表单已提交,但 modelAttribute 值为空,如何在提交时包含 modelAttribute 对象(表单正在使用的对象)?

4

2 回答 2

54

您需要发布数据。我通常这样做的方式是使用以下内容。

var str = $("#myForm").serialize();

$.ajax({
    type:"post",
    data:str,
    url:"/myaction.htm",
    async: false,
    dataType: "json",
    success: function(){
       alert("success");
    }
});
于 2012-12-19T17:17:25.660 回答
2

您的 ModelAttributes 未填充,因为您没有将任何参数传递给服务器。表单数据必须发布到服务器

$.post('myaction.htm', $('#formid').serialize())发送 ajax 发布请求。

于 2012-12-19T17:16:44.493 回答