用struts2+ajax表单提交时,有哪位高手遇到过这个错误?异步提交不需要result
用struts2+ajax表单提交时,有谁遇到过这个异常?异步提交不需要result只能求高手了,呵呵![解决办法]还没运
用struts2+ajax表单提交时,有谁遇到过这个异常?异步提交不需要result
只能求高手了,呵呵!
[解决办法]还没运行到return 那位置呢,现在是action找不到吧
[解决办法]ajax提交时候没有result只会有警告吧不会有error
这么多个参数定义个vo
比如有name age .....
然后
<form id="testForm">
<input name="vo.name" />
<input name="vo.age" />
.
.
</form>
$.ajax({
url: "test.action",
data: $("#testForm").serialize(),
});