美文网首页
SpringBoot 出现 Content type 'appl

SpringBoot 出现 Content type 'appl

作者: Harry小哥哥 | 来源:发表于2020-05-11 10:49 被阅读0次

    传参数,后台@RequestBody接收实体,报错:Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported

    解决方案:添加**的内容,既可以解决问题

        function saveProjectSalary() {
            $.ajax({
                url: '<%=basePath%>/projectSalary/saveProjectSalary',
                type: 'post',
                **data: JSON.stringify($("#projectSalaryForm").serialize()),**
                **contentType:"application/json",**
                dataType: "json",
                success: (result) => {
                    if (result.code == '200') {
                        alert(result)
                    }
                },
                error: (e) => {
                    alert(e);
                }
            });
        }
    

    相关文章

      网友评论

          本文标题:SpringBoot 出现 Content type 'appl

          本文链接:https://www.haomeiwen.com/subject/elgynhtx.html