$.ajax({
url: api.regist,
type: 'POST',
dataType: 'json',
data: {
email: $scope.email,
password: $scope.password
}
})
$http({
url: api.regist,
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
data: {
email: $scope.email,
password: $scope.password
}
})
这两个不应该是完全一样的意义嘛?为什么使用 ajax 可以执行成功,但是使用 $http 就提示跨域了呢?