aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/eventsource/onerror/index.html
blob: 653eaa868de9e84b230d3a2ace506e6af0f2f59e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
title: EventSource.onerror
slug: Web/API/EventSource/onerror
tags:
  - API
  - EventSource
  - Server-sent events
  - イベントハンドラ
  - プロパティ
  - リファレンス
translation_of: Web/API/EventSource/onerror
---
<div>{{APIRef('WebSockets API')}}</div>

<div></div>

<p>{{domxref("EventSource")}} インターフェースの<code><strong>onerror</strong></code> プロパティは、エラーが発生し、<code>EventSource</code> オブジェクトに対して {{event("error")}} が送出されたときに呼び出される {{domxref("EventHandler")}} です。</p>

<h2 id="構文">構文</h2>

<pre class="syntaxbox">eventSource.onerror = function</pre>

<h2 id="例"></h2>

<pre class="brush: js">evtSource.onerror = function() {
  console.log("EventSource failed.");
};</pre>

<div class="note">
<p><strong>メモ</strong>: 完全な例を GitHub から見つけることができます — <a href="https://github.com/mdn/dom-examples/tree/master/server-sent-events" rel="noopener">PHP を用いた簡単な SSE のデモ</a> を参照。</p>
</div>

<h2 id="仕様">仕様</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様</th>
   <th scope="col">ステータス</th>
   <th scope="col">コメント</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG', "comms.html#handler-eventsource-onerror", "onerror")}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>初期定義</td>
  </tr>
 </tbody>
</table>

<ul>
</ul>

<h2 id="ブラウザ互換性">ブラウザ互換性</h2>

<div>


<p>{{Compat("api.EventSource.onerror")}}</p>
</div>

<h2 id="関連情報">関連情報</h2>

<ul>
 <li>{{domxref("EventSource")}}</li>
</ul>