我使用XMLHttpRequest
异步发出http请求:
xhr.open(method, uri, true);
当我发送something
时:
xhr.send(something)
当服务器关闭时,它会抛出以下错误:
net::ERR_CONNECTION_REFUSED
如何捕获并处理此错误?标准try..catch
块不起作用,因为请求是异步的。
提前致谢。
答案 0 :(得分:8)
使用onerror
的{{1}}事件:
XMLHttpRequest