aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/response/error
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/response/error
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/response/error')
-rw-r--r--files/ja/web/api/response/error/index.html63
1 files changed, 63 insertions, 0 deletions
diff --git a/files/ja/web/api/response/error/index.html b/files/ja/web/api/response/error/index.html
new file mode 100644
index 0000000000..28ad1c1995
--- /dev/null
+++ b/files/ja/web/api/response/error/index.html
@@ -0,0 +1,63 @@
+---
+title: Response.error()
+slug: Web/API/Response/error
+translation_of: Web/API/Response/error
+---
+<div>{{APIRef("Fetch")}}</div>
+
+<p>{{domxref("Response")}} インターフェイスの <strong><code>error()</code></strong> メソッドはネットワークエラーに関連付けられた新規の <code>Response</code> オブジェクトを返します。</p>
+
+<div class="note">
+<p><strong>Note</strong>: これは主に <a href="/en-US/docs/Web/API/ServiceWorker_API">ServiceWorkers</a> に関連しています。エラーメソッドは、必要に応じてエラーを返す為に使用されます。 エラーレスポンスの {{domxref("Response.type","type")}} は <code>error</code> に設定されています。</p>
+</div>
+
+<div class="note">
+<p><strong>Note</strong>: "エラー" <code>Response</code> は実際にスクリプトに公開されません。 {{domxref("GlobalFetch.fetch","fetch()")}} に対するそのような応答は、 promise を拒否します。</p>
+</div>
+
+<h2 id="構文">構文</h2>
+
+<pre class="syntaxbox notranslate">var <em>errorResponse</em> = Response.error();</pre>
+
+<h3 id="引数">引数</h3>
+
+<p>無し</p>
+
+<h3 id="返り値">返り値</h3>
+
+<p>{{domxref("Response")}} オブジェクト</p>
+
+<h2 id="例">例</h2>
+
+<p>TBD (まだどこでもサポートされていません。)</p>
+
+<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('Fetch','#dom-response-error','error()')}}</td>
+ <td>{{Spec2('Fetch')}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザー実装状況">ブラウザー実装状況</h2>
+
+
+
+<p>{{Compat("api.Response.error")}}</p>
+
+<h2 id="関連項目">関連項目</h2>
+
+<ul>
+ <li><a href="/en-US/docs/Web/API/ServiceWorker_API">ServiceWorker API</a></li>
+ <li><a href="/en-US/docs/Web/HTTP/Access_control_CORS">HTTP access control (CORS)</a></li>
+ <li><a href="/en-US/docs/Web/HTTP">HTTP</a></li>
+</ul>