$.ajax列印error堆疊資訊
阿新 • • 發佈:2018-12-12
$.ajax用error:function(data,type, err)列印error堆疊資訊,可以檢視因為什麼原因失敗而執行error函式
-
$.ajax({type:"GET",
-
url:url,
-
dataType:"json",
-
timeout:5000,
-
success:function(data){},
-
error:function(data,type, err){
-
console.log("ajax錯誤型別:"+type);
-
console.log(err);
-
}
-
});
最後排查出原因在於這裡少了一個逗號
要比下面這種只告訴別人請求失敗的方式好的多
-
$.ajax({type:"GET",
-
url:url,
-
dataType:"json",
-
timeout:5000,
-
success:function(data){},
-
error:function(err){
-
console.log("失敗");
-
}
-
});
--------------------- 本文來自 zhifeng687 的CSDN 部落格 ,全文地址請點選:https://blog.csdn.net/qq_26222859/article/details/75424963?utm_source=copy