--- title: EventSource.onerror slug: Web/API/EventSource/error_event translation_of: Web/API/EventSource/onerror original_slug: Web/API/EventSource/onerror ---
{{APIRef('WebSockets API')}}
 

{{domxref("EventSource")}} 的属性 onerror 是当发生错误且这个错误事件({{event("error")}} )被EventSource触发时调用的一个事件处理函数({{event("Event_handlers", "event handler")}})

语法

eventSource.onerror = function

例子

evtSource.onerror = function() {
  console.log("EventSource failed.");
};

Note: 你可以在Github上查看这个完整例子: Simple SSE demo using PHP.

规范

Specification Status Comment
{{SpecName('HTML WHATWG', "comms.html#handler-eventsource-onerror", "onerror")}} {{Spec2('HTML WHATWG')}} Initial definition

浏览器兼容性

{{Compat("api.EventSource.onerror")}}

相关链接