0
我有一個簡單的角度服務,在火狐,Safari,Chrome和IE9 +http.post總是進入錯誤回調在IE8
但是工作得很好,對於IE8的服務總是擊中.error回調。
JS:
myService.authUser($scope.data)
.success(function(data, status, headers, config) {
console.log("Success..");
$scope.showProfile = true;
})
.error(function (data, status, headers, config) {
console.log("ERRROR!!!");
$scope.errorText = true;
})
app.service('myService', function($http) {
this.authUser = function (myData) {
return $http({
url: 'url',
method: "POST",
data: angular.toJson(myData),
headers: {
'Content-Type': 'application/json'
}
});
};
});
在上述情況下,IE8總是登錄ERRROR!