1
我使用$http
從服務器檢索數據。萬一發生錯誤,全部statusCode = -1
。我無法得到正確的errorCode
在客戶端處理。我沒有更新服務器代碼的權限。
$http(options).then(function (response) {
if (response.status === 200) {
resolve(response.data);
} else {
exceptionHandler(response);
}
}, function (error) {
exceptionHandler(error);
});
console.log
被放在exceptionHandler
函數上。
請幫助我得到正確的錯誤代碼。非常感謝。