SpringMVC如何接收JSON格式参数

1、JS定义请求参数

1、定义参数必须要定义成JSON格式数据如下

let papers = {"answers": answers, "phone": phone, "surplusTime": maxtime};

2、$.ajax方法设置data:JSON.stringify(papers),contentType: ‘application/json’,如下

        $.ajax({
            type: "POST",
            url: "url",
            data: JSON.stringify(papers),
            contentType: 'application/json',
            dataType: 'json',
            success: function (result) {
            },
            error: function (error) {
            }
        });

总结以上

		//定义请求的参数
 		let papers = {"answers": answers, "phone": phone, "surplusTime": maxtime};
 		//请求SringMVC的接口
  		$.ajax({
            type: "POST",
            url: "url",
            //重点1
            data: JSON.stringify(papers),
            //重点2
            contentType: 'application/json',
            dataType: 'json',
            success: function (result) {
            },
            error: function (error) {
            }
        });

2、定义SpringMVC接收的方法

可以使用@RequestBody()将请求数据封装到JSONObject对象中,以下

    @RequestMapping(value = "/url")
    @ResponseBody
    public Response url(HttpServletRequest request, HttpServletResponse response, @RequestBody() JSONObject obj) {
    //根据实际业务解析obj对象
    }

你可能感兴趣的:(实战案例)