码迷,mamicode.com
首页 > Web开发 > 详细

jquery序列化from表单使用ajax提交返回json数据(使用struts2注解result type = json)

时间:2015-01-09 18:56:27      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:

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";
             });
      }
  });
});

 

jquery序列化from表单使用ajax提交返回json数据(使用struts2注解result type = json)

标签:

原文地址:http://www.cnblogs.com/softcsy/p/4213815.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!