aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/promiserejectionevent/promise/index.html
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/promiserejectionevent/promise/index.html
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/promiserejectionevent/promise/index.html')
-rw-r--r--files/ja/web/api/promiserejectionevent/promise/index.html77
1 files changed, 77 insertions, 0 deletions
diff --git a/files/ja/web/api/promiserejectionevent/promise/index.html b/files/ja/web/api/promiserejectionevent/promise/index.html
new file mode 100644
index 0000000000..ae55501f0d
--- /dev/null
+++ b/files/ja/web/api/promiserejectionevent/promise/index.html
@@ -0,0 +1,77 @@
+---
+title: PromiseRejectionEvent.promise
+slug: Web/API/PromiseRejectionEvent/promise
+tags:
+ - API
+ - HTML DOM
+ - JavaScript
+ - Promise
+ - PromiseRejection
+ - Promises
+ - Property
+ - Reference
+ - events
+translation_of: Web/API/PromiseRejectionEvent/promise
+---
+<div>{{APIRef("HTML DOM") }}</div>
+
+<div>{{domxref("PromiseRejectionEvent")}}インターフェイスの読み取り専用プロパティである <code><strong>promise</strong></code> は、拒絶された JavaScript の {{jsxref("Promise")}} を表します。promise が拒絶された理由は、イベントの {{domxref("PromiseRejectionEvent.reason")}} プロパティを検査することでわかります。</div>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox"><em>promise</em> = <em>PromiseRejectionEvent</em>.promise</pre>
+
+<h3 id="Value" name="Value">値</h3>
+
+<p>reject(拒絶) されて、処理されていない JavaScript の{{jsxref("Promise")}}。</p>
+
+<h2 id="Examples" name="Examples">例</h2>
+
+<p>この例では処理されておらず、{{domxref("PromiseRejectionEvent.reason", "reason")}} の <code>code</code> 項目が "Module not ready"であるオブジェクトである Promise をリッスンし、正しい実行に失敗するタスクを再実行する何もしないコールバックをセットアップします。</p>
+
+<p>{{domxref("event.preventDefault()")}} は Promise が処理されたことを示すために呼ばれます。</p>
+
+<pre class="brush: js">window.onunhandledrejection = function(event) {
+ if (event.reason.code &amp;&amp; event.reason.code == "Module not ready") {
+ window.requestIdleCallback(function(deadline) {
+ loadModule(event.reason.moduleName)
+ .then(performStartup);
+ });
+ event.preventDefault();
+ }
+}</pre>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">ステータス</th>
+ <th scope="col">コメント</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('HTML WHATWG', 'webappapis.html#dom-promiserejectionevent-promise', 'PromiseRejectionEvent.promise')}}</td>
+ <td>{{ Spec2('HTML WHATWG') }}</td>
+ <td>初期定義。</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
+
+
+
+<p>{{Compat("api.PromiseRejectionEvent.promise")}}</p>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
+
+<ul>
+ <li>{{SectionOnPage("/ja/docs/Web/JavaScript/Guide/Using_promises", "Promise rejection events")}}</li>
+ <li>{{jsxref("Promise")}}</li>
+ <li>{{domxref("PromiseRejectionEvent")}}</li>
+ <li>{{event("rejectionhandled")}}</li>
+ <li>{{event("unhandledrejection")}}</li>
+</ul>