ajax提交json数据并使用Springmvc接收实例
1.页面代码
$.ajax({
type: "POST",
contentType: "application/json",//必须加
dataType: "json",
url: "/dataAnalysis/selsPoverty",
data:JSON.stringify({ 'year': year, 'bar': qhdm }),
success: function (data) {}}
2.后台代码
【ajax提交json数据并使用Springmvc接收实例】
@RequestMapping(value = "https://www.it610.com/selsPoverty", method = RequestMethod.POST, produces = "text/html;
charset=UTF-8")
@ResponseBody
public String selsPoverty( HttpSession session,@RequestBody Map data) {
SysAdmin admin = (SysAdmin) session.getAttribute(Constant.LOGIN_SESSION);
JSONObject json=new JSONObject(data);
User user=new User();
user.setPageNum(0);
user.setInsert_Date(json.getString("year"));
//user.setInsert_Date(json.getString("year"));
Listlist = userService.getList(user);
String str="[";
//前台所需的数据DATA
String lables="[";
if(list.size()!=0){
for (int i = 0;
i 1)?(str.substring(0, str.length()-1)):str;
lables=(lables.length()>1)?(lables.substring(0, lables.length()-1)):lables;
str+="]";
lables+= "]";
}else{
return "2";
}JSONObject rejson=new JSONObject();
json.put("lab", lables);
json.put("strs", str);
return rejson.toJSONString();
}
推荐阅读
- Hadoop|Hadoop MapReduce Job提交后的交互日志
- git|git 的常规操作
- #8.17号小作业提交#
- 拆书带给我的变化
- 关于ajax异步分页传输数据到页面为字符串的JS解决办法
- WebAPI|WebAPI 多对多对象输出json异常()
- Python|Python 小项目2 使用JSON API并处理数据
- vue.js|Vue为何弃用经典的Ajax,选择自研Axios()
- MySQL|MySQL 5.7 JSON特性支持
- 解析json用的Gson解析出现异常记录问题