通过Ajax进行Post提交Json数据
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/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代码
@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变量向实体类转换时发生字符向数字转换的错误。
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)