jquery报错-Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported

原因:

原因:

后端使用JSON格式解析接收数据,但前端提交数据时没有指定使用JSON格式提交,而默认的提交方式是application/x-www-form-urlencoded,此时后台用JSON格式解析前台的数据,即报错

如何解决:

前端指定提交方式为JSON

contentType: "application/json;charset=UTF-8",

要注意,data也要为JSON格式,否则会报错

JSON parse error: Unrecognized token 'xxx': was expecting (JSON String, Number, Array, Ob...

完整的ajax为

            $.ajax({
                type: "POST",
                url: "url/xx/xx/xx"
                contentType: "application/json;charset=UTF-8",
                data: JSON.stringify({key: value, ...}),
                dataType: "json",
                success: function(data) {
                    layer.msg('切换成功!');
                },
                error: function() {
                    layer.msg('切换失败!');
                }
            });

 

 

上一篇:Spring框架讲解


下一篇:Web项目常见问题和解决