0
我在應用程序中添加了一個「加載屏幕」。在這篇文章中發現:'Click'
現在我有問題,所有$ http請求導致「成功」回調。即使當url不存在。
$http.post("this doesnt even exist", { })
.success(function (data, status, headers, config) {
alert("success"); //this callback is called
})
.error(function (data, status, headers, config) {
alert("error"); //never called
});
當我禁用'responseInterceptor'時,一切正常。 (例外,未找到,錯誤參數 - >所有錯誤回調的結果)
我正在使用.NET Webservice從中獲取數據。
在成功回調的參數值
data: ''
status: 0
headers: 'function(name) { ... }'
config: JSON.stringify(config) '{"method":"POST","url":"this doesnt even exist","data":{}}'
我使用「AngularJS v1.0.8」(最新的穩定版) – Stinus
請提供HttpInterceptor – tschiela
的代碼@tschiela HttpInterceptor的代碼是提供商鏈路的精確副本 – Stinus