通过Ajax进行Post提交Json数据的方法
js代码
$.ajax({ type : "POST", url : js_path + "/maintainAdd/add", data : JSON.stringify(madd_data.editMaintain), contentType : "application/json", dataType : "json", complete:function(msg) { layer.msg("报修成功",{time:2000}); layer.close(madd_data.w_c_index); } });
Action代码
<span style="white-space:pre;"> </span>@ResponseBody @RequestMapping(value = "/add",method = RequestMethod.POST) public void addMaintain(@RequestBody Maintain maintain){ this.save_maintain(maintain); }
注意事项:
1、ajax中,contentType: "application/json"是必须的。dataType: "json"是表示返回值是json格式,依据返回值类型而定。
2、data中,将json对象序列化。使用JSON.stringfy()函数或者双引号形式的字符串。
3、调试的一个技巧,有时候json变量和实体类相对复杂时提交老是报415或者400的错误又找不到原因,可以将Action中的实体类换成JSONObject 看看能不能接收到参数,@RequestBody JSONObject requestJso,接收后在JSON系列化到实体类。有次就是因为json变量向实体类转换时发生字符向数字转换的错误。
相关推荐
wcqwcq 2020-07-04
84423067 2020-06-12
Guanjs0 2020-11-09
wmsjlihuan 2020-09-15
shishengsoft 2020-09-15
poplpsure 2020-08-17
CyborgLin 2020-08-15
Richardxx 2020-07-26
sunnyhappy0 2020-07-26
knightwatch 2020-07-19
chichichi0 2020-06-16
YAruli 2020-06-13
JF0 2020-06-13
心丨悦 2020-06-11
zkwgpp 2020-06-04
stoneechogx 2020-06-04
litterfrog 2020-05-30
today0 2020-05-26