我是 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 对象(表单正在使用的对象)?