From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../api/promiserejectionevent/promise/index.html | 77 ++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 files/ja/web/api/promiserejectionevent/promise/index.html (limited to 'files/ja/web/api/promiserejectionevent/promise/index.html') 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 +--- +
{{APIRef("HTML DOM") }}
+ +
{{domxref("PromiseRejectionEvent")}}インターフェイスの読み取り専用プロパティである promise は、拒絶された JavaScript の {{jsxref("Promise")}} を表します。promise が拒絶された理由は、イベントの {{domxref("PromiseRejectionEvent.reason")}} プロパティを検査することでわかります。
+ +

構文

+ +
promise = PromiseRejectionEvent.promise
+ +

+ +

reject(拒絶) されて、処理されていない JavaScript の{{jsxref("Promise")}}。

+ +

+ +

この例では処理されておらず、{{domxref("PromiseRejectionEvent.reason", "reason")}} の code 項目が "Module not ready"であるオブジェクトである Promise をリッスンし、正しい実行に失敗するタスクを再実行する何もしないコールバックをセットアップします。

+ +

{{domxref("event.preventDefault()")}} は Promise が処理されたことを示すために呼ばれます。

+ +
window.onunhandledrejection = function(event) {
+  if (event.reason.code && event.reason.code == "Module not ready") {
+    window.requestIdleCallback(function(deadline) {
+      loadModule(event.reason.moduleName)
+        .then(performStartup);
+    });
+    event.preventDefault();
+  }
+}
+ +

仕様

+ + + + + + + + + + + + + + + + +
仕様ステータスコメント
{{SpecName('HTML WHATWG', 'webappapis.html#dom-promiserejectionevent-promise', 'PromiseRejectionEvent.promise')}}{{ Spec2('HTML WHATWG') }}初期定義。
+ +

ブラウザー実装状況

+ + + +

{{Compat("api.PromiseRejectionEvent.promise")}}

+ +

ブラウザー実装状況

+ + -- cgit v1.2.3-54-g00ecf