通过Ajax提交对象

var person={name:"",sex:""}

$.ajax({
    type:"post",
    url:"",
    data:{"person":JSON.stringify(person)},//须将对象转换为JSON
success:function(data){}
})

后台接受json数据后通过JSONObject.toBean() 将json转化为java对象


JSONObject objperson = JSONObject.fromObject(request.getParameter("proson"));
Person person=(Person)JSONObject.toBean(objperson,Person.class);



你可能感兴趣的:(通过Ajax提交对象)