aboutsummaryrefslogtreecommitdiff
path: root/files/ja/conflicting/web/api/navigator/online/index.html
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2022-03-06 00:13:06 +0000
committerMDN <actions@users.noreply.github.com>2022-03-06 00:13:06 +0000
commit8e8d92a50f74b5370984259dc963dac56cc5902b (patch)
tree31593d3dbeeee9926fc872ae9ee6ba244385b9ce /files/ja/conflicting/web/api/navigator/online/index.html
parent9a01a5446e5c02cb66cb0c4423daf4a3a50f6453 (diff)
downloadtranslated-content-8e8d92a50f74b5370984259dc963dac56cc5902b.tar.gz
translated-content-8e8d92a50f74b5370984259dc963dac56cc5902b.tar.bz2
translated-content-8e8d92a50f74b5370984259dc963dac56cc5902b.zip
[CRON] sync translated content
Diffstat (limited to 'files/ja/conflicting/web/api/navigator/online/index.html')
-rw-r--r--files/ja/conflicting/web/api/navigator/online/index.html127
1 files changed, 127 insertions, 0 deletions
diff --git a/files/ja/conflicting/web/api/navigator/online/index.html b/files/ja/conflicting/web/api/navigator/online/index.html
new file mode 100644
index 0000000000..e30c9d6c63
--- /dev/null
+++ b/files/ja/conflicting/web/api/navigator/online/index.html
@@ -0,0 +1,127 @@
+---
+title: オンライン・オフラインイベント
+slug: conflicting/Web/API/Navigator/onLine
+tags:
+ - AJAX
+ - DOM
+ - HTML5
+ - Intermediate
+ - NeedsUpdate
+ - Offline web applications
+ - Web Development
+translation_of: Web/API/Navigator/Online_and_offline_events
+original_slug: Web/API/Navigator/Online_and_offline_events
+---
+<p>一部のブラウザーは、 <a href="https://www.whatwg.org/specs/web-apps/current-work/#offline">Online/Offline イベント</a>を <a href="https://www.whatwg.org/specs/web-apps/current-work/">WHATWG Web Applications 1.0 仕様書</a>に従って実装しています。</p>
+
+<h3 id="Overview">概要</h3>
+
+<p>オフラインに対応した良いウェブアプリケーションを構築するためには、アプリケーションが実際にオフラインになったタイミングを知る必要があります。また、アプリケーションが「オンライン」の状態に復帰したタイミングも知る必要があります。要件を分解すると次のようになります。</p>
+
+<ol>
+ <li>サーバーとの再同期ができるように、ユーザーがオンラインに戻ったタイミングを知る必要があります。</li>
+ <li>サーバーへのリクエストを後回しにすることができるように、ユーザーがオフラインなったタイミングを知る必要があります。</li>
+</ol>
+
+<p>オンライン/オフラインイベントがこのプロセスを一般化するのに役立ちます。</p>
+
+<p>残念ながら、これらのイベントは完全には信頼できません。より高い信頼性が必要な場合や、 API がブラウザーに実装されていない場合は、サービスワーカーを使用したり <a href="https://www.html5rocks.com/en/mobile/workingoffthegrid.html#toc-xml-http-request">XMLHttpRequest からのレスポンス</a>を使用するなど、他の兆候を利用してオフラインであるかどうかを検出することができます。</p>
+
+<h2 id="API">API</h2>
+
+<h3 id="navigator.onLine"><code>navigator.onLine</code></h3>
+
+<p><code><a href="/ja/docs/Web/API/Navigator/onLine">navigator.onLine</a></code> は、 <code>true</code>/<code>false</code> の値を保持しているプロパティです (オンラインの場合は <code>true</code>、オフラインの場合は <code>false</code>)。</p>
+
+<p>このプロパティは、ユーザーが「オフラインモード」に切り替えたとき (Firefox の場合は、ファイル→オフライン作業) に更新されます。さらに、このプロパティは、ブラウザーがネットワークに接続できなくなったときに更新されます。仕様書によれば、次のようになっています。</p>
+
+<blockquote cite="https://www.whatwg.org/specs/web-apps/current-work/#offline">
+ <code>navigator.onLine</code> 属性はユーザーがリンクを辿ったり、スクリプトが外部のページをリクエストしたりしたときにユーザーエージェントがネットワークで通信できない場合 (またはそのような試みが失敗した場合) は、必ず false を返す必要があります。</blockquote>
+
+<p>Firefox 2 はこのプロパティをブラウザーのオフラインモードが切り替わる度に更新します。 <a href="/ja/docs/Mozilla/Firefox/Releases/41#miscellaneous">Firefox 41</a> は、 Windows、 Linux、 OS X においてネットワークの接続状態が変化したときにも更新します。</p>
+
+<p>このプロパティは Firefox と Internet Explorer の古いバージョンにも存在しました。 (この仕様はこれらの先行的な実装に基づいています)。従って、今すぐこのプロパティを使い始めることができます。ネットワーク状態の自動判断は Firefox 2 にて実装されました。</p>
+
+<h3 id=".22online.22_and_.22offline.22_events">"<code>online</code>" および "<code>offline</code>" イベント</h3>
+
+<p><a href="/ja/docs/Mozilla/Firefox/Releases/3">Firefox 3</a> は 2 つの新しいイベントを導入しました。"<a href="/ja/docs/Web/API/document.ononline"><code>online</code></a>" and "<a href="/ja/docs/Web/API/document.onoffline"><code>offline</code></a>" です。これらの 2 つのイベントは、ブラウザーのオンラインおよびオフラインモードが切り替わるたびに、各ページの <code>&lt;body&gt;</code> に発行されます。加えて、このイベントは <code>document.body</code> から <code>document</code> へとバブリングし、 <code>window</code> までたどり着きます。これらのイベントはキャンセルできません (ユーザーのオンラインモードやオフラインモードへの移行を防ぐことはできません)。</p>
+
+<p><a href="/ja/docs/Mozilla/Firefox/Releases/41#miscellaneous">Firefox 41</a> では、 Windows, Linux, OS X においてネットワークの接続状態が変化したことを OS が通知したときに、これらのイベントが発行されます。</p>
+
+<p>これらのイベントに対するリスナーは、いくつかのお馴染みの方法で登録することができます。</p>
+<ul>
+ <li><code><a href="/ja/docs/Web/API/EventTarget/addEventListener">addEventListener</a></code> を、 <code>window</code>, <code>document</code>, <code>document.body</code> に対して使用します。</li>
+ <li><code>document</code> または <code>document.body</code> の <code>.ononline</code> または <code>.onoffline</code> プロパティを JavaScript の <code>Function</code> オブジェクトに設定します。(<strong>注意:</strong> <code>window.ononline</code> または <code>window.onoffline</code> は互換性の理由で動作しません)</li>
+ <li>HTML マークアップで <code>&lt;body&gt;</code> タグの <code>ononline="..."</code> または <code>onoffline="..."</code> 属性を指定します。</li>
+</ul>
+
+<h2 id="Example">例</h2>
+
+<p>イベントが機能しているかどうかを確認するために、<a class="link-https" href="https://bugzilla.mozilla.org/attachment.cgi?id=220609">簡単なテストケース</a>を用意しました (イベントリスナーを document.body に代入しているため、 Chrome では動作しません)。</p>
+
+<p>こちらが JavaScript 部分です。</p>
+
+<pre class="brush: js">window.addEventListener('load', function() {
+ var status = document.getElementById("status");
+ var log = document.getElementById("log");
+
+ function updateOnlineStatus(event) {
+ var condition = navigator.onLine ? "online" : "offline";
+
+ status.className = condition;
+ status.innerHTML = condition.toUpperCase();
+
+ log.insertAdjacentHTML("beforeend", "Event: " + event.type + "; Status: " + condition);
+ }
+
+ window.addEventListener('online', updateOnlineStatus);
+ window.addEventListener('offline', updateOnlineStatus);
+});</pre>
+
+<p>CSS 部分です。</p>
+
+<pre class="brush: css">#status {
+ position: fixed;
+ width: 100%;
+ font: bold 1em sans-serif;
+ color: #FFF;
+ padding: 0.5em;
+}
+
+#log {
+ padding: 2.5em 0.5em 0.5em;
+ font: 1em sans-serif;
+}
+
+.online {
+ background: green;
+}
+
+.offline {
+ background: red;
+}
+</pre>
+
+<p>対応する HTML です。 <span class="comment">XXX When mochitests for this are created, point to those instead and update this example -nickolay</span></p>
+
+<pre class="brush: html">&lt;div id="status"&gt;&lt;/div&gt;
+&lt;div id="log"&gt;&lt;/div&gt;
+&lt;p&gt;This is a test&lt;/p&gt;
+</pre>
+
+<p>実行例はこちらです。</p>
+
+<p>{{ EmbedLiveSample('Example', '100%', '150') }}</p>
+
+<h2 id="Notes">注</h2>
+
+<p>この API がブラウザに実装されていない場合は、サービスワーカーや <a href="http://www.html5rocks.com/en/mobile/workingoffthegrid.html#toc-xml-http-request">XMLHttpRequest からのレスポンス</a>を使用するなど、他の兆候を使用してオフラインであるかどうかを検出することができます。</p>
+
+<h2 id="References">参考文献</h2>
+
+<ul>
+ <li><a href="https://www.whatwg.org/specs/web-apps/current-work/#offline">WHATWG Web Applications 1.0 仕様の「Online/Offline イベント」の節</a></li>
+ <li><a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=336359">Firefox に実装された online/offline イベントのバグ追跡</a>および<a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=336682">関連バグ</a></li>
+ <li><a class="link-https" href="https://bugzilla.mozilla.org/attachment.cgi?id=220609">簡単なテストケース</a></li>
+ <li><a href="http://ejohn.org/blog/offline-events/">Online/Offline イベントの解説</a></li>
+</ul>