目前有使用到 ajax 在error 的時候如下
error: function () {
alert(`wrong`);
}
我有查一般想知道錯訊是這樣寫 如下
error: function(xhr, ajaxOptions, thrownError) {
console.log(xhr.responseText);
}
我希望發生此錯誤時
能記下來這個錯訊
因為我無法模擬出那個錯誤
不知道問題在哪
大家會怎麼存