ajax 以json形式提交表单

表单元素转JSON

《ajax 以json形式提交表单》

自定义一个函数

$.fn.serializeObject = function()
{
    var o = {};
    var a = this.serializeArray();
    $.each(a, function() {
        if (o[this.name] !== undefined) {
            if (!o[this.name].push) {
                o[this.name] = [o[this.name]];
            }
            o[this.name].push(this.value || '');
        } else {
            o[this.name] = this.value || '';
        }
    });
    return o;
};

ajax提交表单

$.ajax({
    type : "POST",
    url : "rest/role/new",
    dataType : "json",
    data : $("#form_add_roleRecord").serializeObject(),
    success : function(data) {
        alert("成功");
    },
    error : function(data) {
        alert("失败");
        console.log(data);
    }
});

java后台接收

我的后台使用了spring mvc

//模型
public class Role {
    private Long id;

    private String roleName;

    private String roleSign;

    private String description;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getRoleName() {
        return roleName;
    }

    public void setRoleName(String roleName) {
        this.roleName = roleName == null ? null : roleName.trim();
    }

    public String getRoleSign() {
        return roleSign;
    }

    public void setRoleSign(String roleSign) {
        this.roleSign = roleSign == null ? null : roleSign.trim();
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description == null ? null : description.trim();
    }

    @Override
    public String toString() {
        return "Role [id=" + id + ", roleName=" + roleName + ", roleSign=" + roleSign + ", description=" + description + "]";
    }

}

//控制器
@Controller
@RequestMapping(value = "/role")
public class RoleController {

    @RequestMapping(value = "/new", method = RequestMethod.POST, produces = { "application/json;charset=UTF-8" })
    @ResponseBody
    public String newRecord(Role role, HttpServletRequest request) {
        try {
            System.out.println(role.toString());
        } catch (Exception e) {
            e.printStackTrace();
        }
        return "{\"success\":\"true\"}";
    }
}


//输出
Role [id=null, roleName=testaa, roleSign=user:create, description=]
    原文作者:毛宇鹏
    原文地址: https://segmentfault.com/a/1190000004414298
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞