jquery序列化from表单使用ajax提交返回json数据(使用struts2注解result type = json)
1.action类引入struts2的"json-default"拦截器栈
@ParentPackage("json-default")
//示例 @ParentPackage(WapBaseAction.WAP_PACKAGE) //WAP_PACKAGE继承了json-default @Namespace("/") public class ModifyResumeAction extends WapBaseAction {...
2.@Action的result类型为json同时可以设置params
@Action(value = "creatResume", results = {@Result(name = JSON,type=JSON, params={ROOT,RESULT})})
3.jquery序列化form表单使用ajax提交
$.ajax({ url: "<eiss:site site="WAP_CENTER"/>/creatResume", data: $("form").serialize(), //序列化form表单 type: "POST", dataType: "json", success: function(result){ //result为返回json数据 $.alert(result.message,function() { window.location.href = "<eiss:site site="WAP_CENTER"/>/myResumes"; }); } }); });
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。