$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错误?
开心每一天1111
相关分类