欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

@RequestBody传递多个对象

程序员文章站 2022-07-14 18:25:24
...

后台代码

@ResponseBody
@RequestMapping("/addnotice")
public Notice addnotice(@RequestBody Map<String, Object> models, @RequestParam String classinfo_id,
			HttpSession session) throws Exception {...}

前端代码

      $.ajax({
				type : "post",
				url : "/notice/addnotice?classinfo_id="+groups,
				contentType : "application/json; charset=utf-8",
				dataType : "json",
				data :JSON.stringify(str),
				success : function(data) {...}
      });
相关标签: SpringMVC