Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.39 KB

File metadata and controls

57 lines (38 loc) · 1.39 KB
title short-title slug l10n
EventSource: error イベント
error
Web/API/EventSource/error_event
sourceCommit
339595951b78774e951b1a9d215a6db6b856f6b2

{{APIRef}}

error は {{domxref("EventSource")}} API のイベントで、イベントソースとのコネクションを開くのに失敗した場合に発生します。

このイベントはキャンセル不可で、バブリングしません。

構文

このイベント名を {{domxref("EventTarget.addEventListener", "addEventListener()")}} などのメソッドで使用するか、イベントハンドラープロパティを設定するかしてください。

addEventListener("error", (event) => {});

onerror = (event) => {};

イベント型

一般的な {{domxref("Event")}} です。

const evtSource = new EventSource("sse.php");

// addEventListener 版
evtSource.addEventListener("error", (e) => {
  console.log("An error occurred while attempting to connect.");
});

// onerror 版
evtSource.onerror = (e) => {
  console.log("An error occurred while attempting to connect.");
};

仕様書

{{Specifications}}

ブラウザーの互換性

{{Compat}}

関連情報