猿问

angularjs $http.post报错 415

           $http({

                url: 'http://54.238.128.198:8081/user/register',

                method: 'POST',

                headers: {

                    'Content-Type': 'application/x-www-form-urlencoded'

                },

                data: {

                    'userName': $scope.myName,

                    'password': $scope.myPwd

                }

            }).then(function(data) {

                console.log(data);

            }, function(xhr) {

                console.log('请求失败');

            });

跨域是没有问题,现在是415错误?

梵蒂冈之花
浏览 520回答 1
1回答

开心每一天1111

你设置了header为'Content-Type': 'application/x-www-form-urlencoded'这是form表单提交格式'userName'='aaa'&'password'='bbb'但你用的是json格式 你看看是不是这个问题
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答