我想使用 jquery 提交表单,同时应该将整个表单数据发送到控制器以及如何在控制器中检索该表单数据
假设这是形式
<form action="#" id="userForm">
<span>userName :</span> <input type="text" id="userName"/>
<span>password :</span> <input type="password" id="password"/>
<input type="button" id="submit" value="submit">
</form>
这是jQuery代码
$("#submit").click(function() {
$.post("login.html", {
}, function(data) {
});
return false;
});
这是控制器方法
@RequestMapping(value = "/login.html", method = RequestMethod.POST)
public @ResponseBody
String login(HttpServletRequest request)
throws Exception {
return "success";
}