我试图捕捉网站是否意外进行跨域调用(例如,如果用户在 url 而不是域中键入 IP。(这是一个商业的可安装应用程序,所以我没有 IIS 控制设置任何转发等)。这不起作用:
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错误吗?