我正在尝试在 spring mvc 中以表单形式实现基于 ajax 的帖子。
这是我的代码:
<form:form method="POST" commandName="emailDomain">
<form:textarea path="emailText" rows="5" id="emailList"
placeholder="Write emails to submit us, saperated by ';'"
style="width: 100%" />
<form:select items="${categoryMap}" path="categoryId" id="categoryList"
onchange="showEmails()" />
<br />
<p align="center">
<button type="button" value="Submit" id="submitEmails">Submit emails</button>
</p>
<p align="center" class="text-info">${var}</p>
</form:form>
我的ajax代码是:
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.js"></script>
<script type="text/javascript">
function showEmails() {
var categoryId = $('#categoryList').val();
var emailText = $('#emailList').val();
$.ajax({
type : "POST",
url : "http://localhost:8081/chatbooster/forms/email.html?cat=1",
data : "categoryId=" + categoryId + "&emailText=" + emailText,
success : function(response) {
},
error:function (xhRequest, ErrorText, thrownError) {
alert('Error: ' + ' ' + thrownError);
}
});
}
问题是单击按钮后,它显示错误作为警报,但没有任何解释。之后它会跳转到显示 json 响应的页面。如果我根本不使用弹簧形式标签,该代码将起作用。它不会显示任何错误,也不会显示 json 响应,但同样,我将无法从数据库中填充选择下拉列表。
我的控制器是:
@Controller
@RequestMapping(value = "/email.html")
public class EmailController{
@RequestMapping(method = RequestMethod.GET)
public String showForm(Model model,
@RequestParam(value = "cat", required = true) String category,
HttpServletRequest request, HttpServletResponse response) {
clearSession(request, response);
return "email";
}
@RequestMapping(value = "/submitemails", method = RequestMethod.GET)
public @ResponseBody
String submitAndRefreshEmails() {
System.out.println("check");
return "email";
}
@RequestMapping(method = RequestMethod.POST)
public @ResponseBody
EmailJsonResponse addEmail(@Valid EmailDomain emailDomain,
BindingResult result,
@RequestParam(value = "cat", required = true) String category,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
//return emailjsonresponse object, a simple object carrying few ints and strings
}
@ModelAttribute("categoryMap")
public Map<Long, String> populateCategoryList(
@RequestParam(value = "cat", required = true) String category)
throws Exception {
// populating drop down
}
}
我已经阅读了很多关于此的讨论,但我不知道如何使它成为这样的情况?任何人都可以在这里帮助我吗?我指的是这个例子http://www.javacodegeeks.com/2012/02/spring-mvc-and-jquery-for-ajax-form.html
编辑1:
我什至尝试过这个新的:
<script type="text/javascript">
$(document).ready(function() {
$('#submitEmails').onclick(function() {
$.getJSON('http://localhost:8081/chatbooster/forms/submitemails.html?cat=1',
{
categoryId : $('#categoryList').val(),
emailText : $('#emailList').val(),
ajax : 'true'
},
function(data) {
alert('data found');
}
);
});
});
但我仍然被显示为 json 响应。我无法理解为什么会这样?我试过这个http://rockhoppertech.com/blog/spring-mvc-3-cascading-selects-using-jquery/。当我不使用弹簧表单组件时,我能够实现 ajax。但这会给我从数据库中填充下拉元素带来麻烦。我缺少一些东西。有什么想法吗?
编辑 2
现在我明白了这个问题的原因是什么。正是我提交的表单最终导致我收到 json 响应。我需要做的是从按钮调用jquery函数,使按钮类型的提交按钮而不是提交类型。单击该按钮将调用与控制器的 GET 请求类型相关的方法。但为此,我需要在单击提交按钮时调用 submitAndRefreshEmails 方法。谁能告诉我该怎么做?当控制器中有许多此类方法时,如何调用 GET 类型的特定方法?