1
我試圖捕捉網站是否意外地進行了跨域調用(例如,如果用戶在URL中輸入IP而不是域名。這是一個商業的,安裝的應用程序,所以我沒有IIS控制設置任何轉發等),這不起作用:如何捕捉405在jQuery.ajax中找不到的方法()
error: function (x, e) {
// If the web service failed for any of the reasons below, then we
// call the custom error dialog display function with the response
// text passed back from the erro
if (x.status === 405) {
alert("405 error")
}
}
是否有任何JavaScript的方式趕上405錯誤?
您是否找到解決方案? –