我正在尝试在错误回调中读取403状态代码(预期),但我将以下内容视为响应对象。
Object {data:null,status:-1,config:Object,statusText:"",headers:function}
预检OPTIONS请求因403而被拒绝。请求如何获取状态代码' 403'和状态文本'禁止'在errorcallback?
fileUpload(url,formdata){
this.$http({
method: 'POST',
url: url,
transformRequest: angular.identity,
headers: {'Content-Type': undefined}
}).then(function successCallback(response) {
}, function errorCallback(response) {
console.log(response);
});