1. 程式人生 > >$.ajax列印error堆疊資訊

$.ajax列印error堆疊資訊

$.ajax用error:function(data,type, err)列印error堆疊資訊,可以檢視因為什麼原因失敗而執行error函式

  1. $.ajax({type:"GET",

  2. url:url,

  3. dataType:"json",

  4. timeout:5000,

  5. success:function(data){},

  6. error:function(data,type, err){

  7. console.log("ajax錯誤型別:"+type);

  8. console.log(err);

  9. }

  10. });

 

最後排查出原因在於這裡少了一個逗號

要比下面這種只告訴別人請求失敗的方式好的多

  1. $.ajax({type:"GET",

  2. url:url,

  3. dataType:"json",

  4. timeout:5000,

  5. success:function(data){},

  6. error:function(err){

  7. console.log("失敗");

  8. }

  9. });

--------------------- 本文來自 zhifeng687 的CSDN 部落格 ,全文地址請點選:https://blog.csdn.net/qq_26222859/article/details/75424963?utm_source=copy